https://github.com/007tickooayush/express-demo-mark1
https://github.com/007tickooayush/express-demo-mark1
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/007tickooayush/express-demo-mark1
- Owner: 007tickooayush
- Created: 2021-07-25T04:11:39.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-25T04:13:56.000Z (almost 4 years ago)
- Last Synced: 2025-02-01T01:37:11.893Z (4 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## get express-generator using npm:
```
npm install -g express-generator
```## Initialize :
```
express
```
## Initialize (alternate):
## APP: demo
### General Command: express AppName
```
express demo
```## install node modules in working directory:
```
npm install
```## run application :
### executing [www.js](./bin/www)```
npm run start
```