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

https://github.com/007tickooayush/express-demo-mark1


https://github.com/007tickooayush/express-demo-mark1

Last synced: about 2 months ago
JSON representation

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
```