Skip to content

marti99-lab/react_lagersystem

Repository files navigation

react_lagersystem

Building an online inventory management system with React, now using a more modern version.

File Structure

│── public/
│── src/
│   ├── assets/
│   ├── components/
│            └── Header.tsx, Header.css, Footer.tsx, Footer.css, NewMedicineForm.tsx
│   ├── pages/
│            └── Inventory.tsx, Inventory.css,
│   ├── hooks/
│   ├── context/
│   ├── services/
│   ├── styles/
│   ├── utils/
│
│   ├── App.css
│   ├── App.tsx
│   ├── index.css
│   ├── main.tsx
│   ├── vite-env.d.ts
│
├── .gitignore
├── db.json
├── DOKUMENTATION.md
├── eslint.config.js
├── index.html
├── package.json
├── README.md
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.node.json
├── vite.config.ts

create the app

npm create vite@latest . --template react
npm install
npm run dev

running the app after cloning the git repository

npm install
npm install -g json-server
npm run dev (First Terminal)
json-server --watch db.json --port 5000 (Second Terminal)

About

Building an online Lagersystem now with React and on a more modern version.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published