An open API service indexing awesome lists of open source software.

https://github.com/ahsansoftengineer/node_academin


https://github.com/ahsansoftengineer/node_academin

Last synced: about 1 hour ago
JSON representation

Awesome Lists containing this project

README

          

# Node_Academin
## Commands
1. npm init
2. npm i nodemon -g --save-dev
3. npm start
4. Setting Followings in package.json file
```json
"scripts": {
"start": "nodemon app.js",
},
```
3. To Debug use F5
4. To Launch the Debugger when changes detech set the following in launch.json
5. For Debugging purpose your Nodemon must install globally
```json
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}\\app.js",
"restart": true,
"runtimeExecutable": "nodemon"
}
```
6. Install Templeting Engines
##### npm i --save ejs pug express-handlebars