Completed
Get single record route
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Adding Node.js Module to Existing SAP HANA Project
Automatically move to the next video in the Classroom when playback concludes
- 1 Introduction
- 2 Copy project
- 3 Adjust mta.yaml
- 4 npm init to create srv module
- 5 Addition Node.js modules
- 6 index.js entry point
- 7 expres-server.js to initialize express
- 8 express.js to add middleware to express
- 9 expressSecurity.js for security setup
- 10 healthCheck.js for external health monitoring
- 11 overloadProtection.js
- 12 swagger.js add SwaggerUI
- 13 Test the basic service framework
- 14 Add service specific routes
- 15 Get all route
- 16 Get single record route
- 17 Controller with DB queries
- 18 Swagger from JSDoc
- 19 Testing via SwaggerUI
- 20 Closing