simple-math-api-exercise icon indicating copy to clipboard operation
simple-math-api-exercise copied to clipboard

Node.js + express math api

simple-math-api-exercise

Node.js + express + typescript math api

Here's a skeleton for us to clone in the 6th fCC meetup in Ikea

Clone it and start from there.

npm install

Installs node_modules folder, what some may know it for vendors folder. Express, dotenv, typescript and all its dependencies are installed.

Useful links:

Compile typescript to dist folder

npm run build

Run our Math API

npm run start

Based on Setup node express typescript server

Start from scratch

npm init -y
npm install express dotenv
npm i -D typescript @types/express @types/node