The is a simple and lightweight node api
It is meant to be used as a "copy paste and edit" api. It's an easy way of starting a lightweight api, without having to think about setting up. It's an easy way of standing up an environment quickly, and in total isolation.
git clone https://github.com/davidpene/node-api.git
cd node-api
npm install
# Starts a stub; defaults on port 3000. Runs on http://localhost:3000
npm start
# Starts a stin on a specified port (e.g. 4001). Runs on http://localhost:4001
npm start -- --port 4001