This is a personal project for creating local API backends for automated tasks. It is not intended to be used in production environments.
Main entity "Item" can be used for testing CRUD operations on MongoDB.
Copy .env-sample
to .env
, edit configuration.
Run following commands:
npm install
nodemon server
http://localhost:4200/api/status
POST http://localhost:4200/api/item
{
"name": "hello world",
}
npm install pm2 -g
pm2 start server