Skip to content

SidiBecker/typeorm-nodejs-crud

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRUD TypeORM Node.js Example

Project   |    Features and Technologies   |    How to contribute   |    License

💻 Project

A simple CRUD implementation with TypeORM in Node.js. API sever implemented with Express.

Base URL: http://localhost:3333

CREATE

POST: /user
{ "name": "foo" }

READ

GET: /user - All
GET: /user/1 - Specific

UPDATE

PUT: /user
{ "id": 1 "name": "foo bar" }

DELETE

DELETE: user/
{ "id": 1 }

🚀 Features and Technologies

TypeORM
Node.js
Express

🤔 How to contribute

  • 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.

📝 License

This project is under MIT License. Se the LICENSE file for more informations

About

A CRUD example with typeorm in Node.js

Resources

License

Stars

Watchers

Forks

Packages

No packages published