https://github.com/ahsansoftengineer/node_academin
https://github.com/ahsansoftengineer/node_academin
Last synced: about 1 hour ago
JSON representation
- Host: GitHub
- URL: https://github.com/ahsansoftengineer/node_academin
- Owner: ahsansoftengineer
- Created: 2022-02-26T05:52:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-09T18:25:48.000Z (about 4 years ago)
- Last Synced: 2025-02-23T01:13:20.527Z (over 1 year ago)
- Language: EJS
- Size: 599 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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