Simple Node with Express Server with REST API

An easy way to get started with a Express server offering a REST API with Node.js. Read more about it.
- git clone git@github.com:rwieruch/node-express-server-rest-api.git
- cd node-express-server-rest-api
- npm install
- npm start
- optional: include .env in your .gitignore
- Create a message with:
- curl -X POST -H "Content-Type:application/json" http://localhost:3000/messages -d '{"text":"Hi again, World"}'
- Delete a message with:
- curl -X DELETE -H "Content-Type:application/json" http://localhost:3000/messages/1
- Install Postman to interact with REST API
- Create a message with:
- Delete a message with: