Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 907 Bytes

README.md

File metadata and controls

43 lines (31 loc) · 907 Bytes

create-node-starter

NPM version Build Status

This tool allows you to create a Nodejs server easily.

You can adapt it to your needs for example by creating APIs or more advanced user interfaces.

Requirement

  • Nodejs(version>=10.15)

Installation

# Using npm
npm install -g create-node-starter

Usage

create-node-starter PROJECT_NAME
cd PROJECT_NAME/
npm i
npm start

To browse your app go to http://localhost:8888

Project architecture

PROJECT_NAME
├── package.json
└── src
    ├── app.js
    ├── controller
    │   └── home.js
    ├── routes.js
    └── start.js