File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed
Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change 33For more detail, please visit:
44> [ Node.js CRUD Rest APIs with Express, Sequelize & PostgreSQL example] ( https://bezkoder.com/node-express-sequelize-postgresql/ )
55
6+ > [ Node.js Express Pagination with PostgreSQL example] ( https://bezkoder.com/node-js-pagination-postgresql/ )
7+
8+ Security:
9+ > [ Node.js JWT Authentication & Authorization with PostgreSQL example] ( https://bezkoder.com/node-js-jwt-authentication-postgresql/ )
10+
11+ Associations:
12+ > [ Sequelize Associations: One-to-Many Relationship example] ( https://bezkoder.com/sequelize-associate-one-to-many/ )
13+
14+ > [ Sequelize Associations: Many-to-Many Relationship example] ( https://bezkoder.com/sequelize-associate-many-to-many/ )
15+
16+ Fullstack:
17+ > [ Vue + Node.js + Express + PostgreSQL example] ( https://bezkoder.com/vue-node-express-postgresql/ )
18+
19+ > [ React + Node.js + Express + PostgreSQL example] ( https://bezkoder.com/react-node-express-postgresql/ )
20+
21+ > [ ANgular 8 + Node.js + Express + PostgreSQL example] ( https://bezkoder.com/angular-node-express-postgresql/ )
22+
23+ > [ ANgular 10 + Node.js + Express + PostgreSQL example] ( https://bezkoder.com/angular-10-node-express-postgresql/ )
24+
25+ > [ ANgular 11 + Node.js + Express + PostgreSQL example] ( https://bezkoder.com/angular-11-node-js-express-postgresql/ )
26+
627## Project setup
728```
829npm install
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ module.exports = app => {
2121 // Delete a Tutorial with id
2222 router . delete ( "/:id" , tutorials . delete ) ;
2323
24- // Create a new Tutorial
24+ // Delete all Tutorials
2525 router . delete ( "/" , tutorials . deleteAll ) ;
2626
2727 app . use ( "/api/tutorials" , router ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " nodejs-express-sequelize-postgresql" ,
33 "version" : " 1.0.0" ,
4- "description" : " Node.js Rest Apis with Express, Sequelize & M " ,
4+ "description" : " Node.js Rest Apis with Express, Sequelize & PostgreSQL " ,
55 "main" : " server.js" ,
66 "scripts" : {
77 "test" : " echo \" Error: no test specified\" && exit 1"
You can’t perform that action at this time.
0 commit comments