Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 360 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 360 Bytes

Basic Node Webserver

Structure

.
├── src
│   ├── controllers.js
│   ├── index.js
│   ├── routes.js
│   ├── utils.js
│   └── views.js
└── static
    ├── index.html
    └── notfound.html

Setup

npm i

Development

npm run dev

Production

npm start