A little node.js web service which lets you store messages. Since it is a library for messages, it is called a message(lib)rary.
You must have node installed in order to run the service
- Type npm install-test to install dependencies and run tests
- If above is successful then type npm start to start up service
- To store a message, you can do a POST like "curl http://localhost:3000/messagerary/messages/ -d 'a message to store'. If successful, this will return back an ID.
- To get a message that has been created, then you can do a GET like "curl http://localhost:3000/messagerary/messages/<message_id>" where the id is the number which was returned in the above step.