|
1 | 1 | # Node.js MongoDB – User Authentication & Authorization example with JWT & Mongoose
|
2 | 2 |
|
| 3 | +## User Registration, User Login and Authorization process. |
| 4 | +The diagram shows flow of how we implement User Registration, User Login and Authorization process. |
| 5 | + |
| 6 | + |
| 7 | + |
3 | 8 | For more detail, please visit:
|
4 | 9 | > [Node.js + MongoDB: User Authentication & Authorization with JWT](https://bezkoder.com/node-js-mongodb-auth-jwt/)
|
5 | 10 |
|
| 11 | +You may need to implement Refresh Token: |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | +> [Node.js JWT Refresh Token with MongoDB example](https://bezkoder.com/jwt-refresh-token-node-js-mongodb/) |
| 16 | +
|
6 | 17 | Working with Front-end:
|
7 | 18 | > [Vue.js JWT Authentication with Vuex and Vue Router](https://bezkoder.com/jwt-vue-vuex-authentication/)
|
8 | 19 |
|
9 |
| -> [Angular 8 JWT Authentication with HttpInterceptor and Router](https://bezkoder.com/angular-jwt-authentication/) |
| 20 | +> [Angular 8 JWT Authentication example](https://bezkoder.com/angular-jwt-authentication/) |
| 21 | +
|
| 22 | +> [Angular 10 JWT Authentication example](https://bezkoder.com/angular-10-jwt-auth/) |
| 23 | +
|
| 24 | +> [Angular 11 JWT Authentication example](https://bezkoder.com/angular-11-jwt-auth/) |
| 25 | +
|
| 26 | +> [React JWT Authentication & Authorization (without Redux) example](https://bezkoder.com/react-jwt-auth/) |
| 27 | +
|
| 28 | +> [React Redux JWT Authentication & Authorization example](https://bezkoder.com/react-redux-jwt-auth/) |
| 29 | +
|
| 30 | +## More Practice: |
| 31 | +> [Node.js, Express & MongoDb: Build a CRUD Rest Api example](https://bezkoder.com/node-express-mongodb-crud-rest-api/) |
| 32 | +
|
| 33 | +> [Server side Pagination in Node.js with MongoDB and Mongoose](https://bezkoder.com/node-js-mongodb-pagination/) |
| 34 | +
|
| 35 | +Associations: |
| 36 | +> [MongoDB One-to-One relationship tutorial with Mongoose examples](https://bezkoder.com/mongoose-one-to-one-relationship-example/) |
| 37 | +
|
| 38 | +> [MongoDB One-to-Many Relationship tutorial with Mongoose examples](https://bezkoder.com/mongoose-one-to-many-relationship/) |
| 39 | +
|
| 40 | +> [MongoDB Many-to-Many Relationship with Mongoose examples](https://bezkoder.com/mongodb-many-to-many-mongoose/) |
| 41 | +
|
| 42 | +Fullstack: |
| 43 | +> [Vue.js + Node.js + Express + MySQL example](https://bezkoder.com/vue-js-node-js-express-mysql-crud-example/) |
| 44 | +
|
| 45 | +> [Vue.js + Node.js + Express + PostgreSQL example](https://bezkoder.com/vue-node-express-postgresql/) |
| 46 | +
|
| 47 | +> [Vue.js + Node.js + Express + MongoDB example](https://bezkoder.com/vue-node-express-mongodb-mevn-crud/) |
| 48 | +
|
| 49 | +> [Angular 8 + Node.js + Express + MySQL example](https://bezkoder.com/angular-node-express-mysql/) |
| 50 | +
|
| 51 | +> [Angular 8 + Node.js + Express + PostgreSQL example](https://bezkoder.com/angular-node-express-postgresql/) |
| 52 | +
|
| 53 | +> [Angular 8 + Node.js + Express + MongoDB example](https://bezkoder.com/angular-mongodb-node-express/) |
| 54 | +
|
| 55 | +> [Angular 10 + Node.js + Express + MySQL example](https://bezkoder.com/angular-10-node-js-express-mysql/) |
| 56 | +
|
| 57 | +> [Angular 10 + Node.js + Express + PostgreSQL example](https://bezkoder.com/angular-10-node-express-postgresql/) |
| 58 | +
|
| 59 | +> [Angular 10 + Node.js + Express + MongoDB example](https://bezkoder.com/angular-10-mongodb-node-express/) |
| 60 | +
|
| 61 | +> [Angular 11 + Node.js Express + MySQL example](https://bezkoder.com/angular-11-node-js-express-mysql/) |
| 62 | +
|
| 63 | +> [Angular 11 + Node.js + Express + PostgreSQL example](https://bezkoder.com/angular-11-node-js-express-postgresql/) |
| 64 | +
|
| 65 | +> [Angular 11 + Node.js + Express + MongoDB example](https://bezkoder.com/angular-11-mongodb-node-js-express/) |
| 66 | +
|
| 67 | +> [React + Node.js + Express + MySQL example](https://bezkoder.com/react-node-express-mysql/) |
| 68 | +
|
| 69 | +> [React + Node.js + Express + PostgreSQL example](https://bezkoder.com/react-node-express-postgresql/) |
| 70 | +
|
| 71 | +> [React + Node.js + Express + MongoDB example](https://bezkoder.com/react-node-express-mongodb-mern-stack/) |
| 72 | +
|
| 73 | +Integration on same Server/Port: |
| 74 | +> [Integrate Angular 8 with Node.js Express](https://bezkoder.com/integrate-angular-8-node-js/) |
| 75 | +
|
| 76 | +> [Integrate Angular 10 with Node.js Express](https://bezkoder.com/integrate-angular-10-node-js/) |
| 77 | +
|
| 78 | +> [Integrate React with Node.js Express](https://bezkoder.com/integrate-react-express-same-server-port/) |
10 | 79 |
|
11 | 80 | ## Project setup
|
12 | 81 | ```
|
|
0 commit comments