The goal of this project is to provide a modern and easy to use order management system.
- Configure database using ORM Prisma and Sqlite
- CRUD users.
- Log a user using JWT.
- Verify authentication for private routes using Middlewares.
- Show logged in user details.
- Create new Categories and List Categories.
- Create new Products and List Products from a specific category.
- List all products.
- Upload product image using multer
- Open an order table and Close a table.
- Add items to a table and also remove items.
- List all orders.
- Submit order and withdraw from draft.
- Access all order details.
- Complete order.
- Node v14.17.1
- Npm v6.14.13
- Git
GET /users
Returns all users in the system.
- Content
{
"users": [
{
"id": "a0b4cdf4-db08-416f-a5ff-dda598fab71f",
"name": "admin",
"email": "[email protected]"
}
]
}
POST /users
Creates a new User and returns the new object.
- Data Body
{
"name": "Admin",
"email": "[email protected]",
"password": "123456"
}
- Content
{
"message": "User created successfully"
}
PUT/users
Update a User and returns the updated object.
- Params
/api/users/:email
- Data Body
{
"name": "Admin",
"password": "123456"
}
- Content
{
"status": 200
"message": "User updated successfully"
}
Clone the project
git clone [email protected]:fdolzanes1/node-api-pizza.git
Go to the project directory
cd node-api-pizza
Install dependencies
npm install
Start the server
npm run start