Project | Features and Technologies | How to contribute | License
A simple CRUD implementation with TypeORM in Node.js. API sever implemented with Express.
Base URL: http://localhost:3333
POST: /user
{ "name": "foo" }
GET: /user - All
GET: /user/1 - Specific
PUT: /user
{ "id": 1 "name": "foo bar" }
DELETE: user/
{ "id": 1 }
- Create a fork from this repository;
- Make a branch and your feature:
git checkout -b my-feature; - Do a commit with yout implementations:
git commit -m 'feat: my new feature'; - Push your branch:
git push origin my-feature. - Create a pull request here.
This project is under MIT License. Se the LICENSE file for more informations