A simple API for storing some chat messages.
npm install
npm run selenium-install
npm start
Go visit http://localhost:3000
.
GET /messages
returns a all of the messages available.GET /messages/:id
returns a given message from the API.POST /messages
creates a new message.PUT /messages/:id
updates the content of the message.DELETE /messages/:id
deletes a message.