A series of NodeJS microservices. Hosted on https://neverendingqs-nodejs.herokuapp.com/.
A simple microservice that stores a value based on a key. Note that this is a shared key value storage, meaning anyone can view and overwrite your key/value pairs. Example's value may or may not match actual value stored by the service.
POST /keyvalue HTTP/1.1
Content-Type: application/json
{"key": "k", "value": "v"}
Based on https://www.freecodecamp.com/challenges/timestamp-microservice.