This is a demo at the most basic level for creating an API in Node using the Express framework.
You will need node and NPM to run this. My preferred option is via Homebrew. brew install node
should then give you node and npm. Use node -v
to verify.
To create our required package.json file: npm init
.
To install Express locally: npm install express --save
.
Enjoy!