| 1.Http api and usage |
node-http2 |
| 2.Express examples |
express examples |
| 3.Express accessing static files |
Express Serve Static Files |
| 4.Rest api end points examples using body-parser |
Express Simple REST |
| 5.Express Router concept examples instead of above |
Express Router |
| 6.Express Generator scaffolding application |
Express Generator |
| 7.Express-generated REST api ready |
Express Generator REST API |
| 8.Node-MongoDb Connection, insert, find,drop data example |
Node MongoDB Example 1 |
| 9.Node-MongoDb connnection- Insert,find,update,drop using operations node-modules |
Node MongoDB Example 2 |
| 10.Solving Callback Hell using Promises |
Node Callback Hell and Promises |
| 11.Creating Mongoosh schema and db calls examples |
Mongoose Part 1 |
| 12.Creating schema using Create method and promise |
Mongoose Part 2 |
| 13.Usage of subschemas in mongoose |
Mongoose Part 3 |
| 14.Rest api with MongoDB and Mogoose |
Express REST API with MongoDB and Mongoose Part 1 |
| 15.Rest api with MongoDB and Mogoose -Operations on sub entities /schemas |
Express REST API with MongoDB and Mongoose Part 2 |
| 16.Basic authentication using Base64 encoding |
Basic Authentication |
| 17.Basic Cookies implementation and authetication |
Cookies |
| 18.Express-sessions using file-store |
Express-session-part-1 |
| 19.Express sessions - signup/login/logout |
Express Session Part 2 |
| 20.Autheticate (login/signup/logout) using passport |
Passport |
| 21.User Authentication using JWT(json web toke) and passport |
Passport JWT |
| 22.mongoosh population for schema linking using objectId |
Mongoose Population |
| 23.Commands to create certificates for communicatio in local inside bin folder |
-->1. openssl genrsa 1024 > private.key -->2. openssl req -new -key private.key -out cert.csr -->3. openssl x509 -req -in cert.csr -signkey private.key -out certificate.pem |
| 23.HTTPS secure server communication setup |
HTTPS |
| 24.Uploads file using Muter |
File Upload |
| 25.Cors setup and working |
Cors |
| 26.Accessing info from facebook using passport |
Passport Facebook |