Sam Doidge

Continual improvement

Express API Hello World

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 packake.json file: npm init. To install Express locally: npm install express --save.

Enjoy!