A minimal Node.js (v12) project starter with Express.
- Only three basic npm dependencies to get your web service up and running in seconds
express
body-parser
cookie-parser
- Perfect for
- quick APIs
- webhook handlers
- improvised micro-services
- No additional boilerplate or configuration required
Click the Remix on Glitch button to spin up minimal-starter
for quick prototyping.
- Node.js (version 12.x or later)
- npm (whichever version comes with your Node.js v12.x installation)
$ git clone git@github.com:krismuniz/minimal-starter.git minimal-starter
$ npm install
$ PORT=3000 npm start