Initial electronics inventory webapp

KV-store backed Express 5 app for tracking electronic components,
their arbitrary fields, and inventory locations (physical, BOM, digital).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-20 19:11:13 +00:00
commit ef2e53ea18
13 changed files with 2768 additions and 0 deletions

12
package.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "electronics-inventory",
"version": "0.1.0",
"type": "module",
"engines": { "node": ">=25" },
"scripts": {
"start": "node server.mjs"
},
"dependencies": {
"express": "^5.2.1"
}
}