https://github.com/survi218/express-generator
Express application to support the REST API by adding routes
https://github.com/survi218/express-generator
express-appengine-handlers express-generator express-router expressjs nodejs nodejs-modules restful-api scaffolding
Last synced: 19 days ago
JSON representation
Express application to support the REST API by adding routes
- Host: GitHub
- URL: https://github.com/survi218/express-generator
- Owner: survi218
- Created: 2017-06-04T16:46:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-04T18:05:53.000Z (over 8 years ago)
- Last Synced: 2025-03-16T07:16:22.490Z (7 months ago)
- Topics: express-appengine-handlers, express-generator, express-router, expressjs, nodejs, nodejs-modules, restful-api, scaffolding
- Language: JavaScript
- Homepage:
- Size: 1.44 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# express-generator
* Express generator is used to scaffold out an Express application. Thereafter you will modify the application to support REST API making use of the Node modules.
- Generating an Express application using the express-generator
- Modify the Express application to support the REST API by adding routes# Installing express-generator
- Install express-generator by typing the following at the prompt:
``````
npm install express-generator -g
``````- Use sudo if you are using an OSX or Linux machine.
- Scaffolding an Express Application
- To scaffold out an Express application, type the following at the prompt:
``````
express node-express-gen
``````Next, move to the node-express-gen folder. Type the following at the command prompt to install all the Node modules
````
npm install
````You can start the Express server by typing the following at the prompt:
````
npm start
````