shyakatv-inventory
v1.0.6
Published
Inventory management system — includes frontend (React) and backend (Express)
Downloads
945
Maintainers
Readme
shyakatv-inventory
Inventory management system with React frontend and Express backend.
Usage
npx shyakatv-inventoryThis creates two folders in your current directory:
backend/— Express API (MongoDB)frontend/— React + Vite app
Run backend
cd backend
npm install # auto-creates .env from .env.example
npm startRequires MongoDB running locally on port 27017. Edit
backend/.envto change the database URI.
Run frontend
cd frontend
npm install
npm run dev