counter-server
v1.0.0
Published
Serve unique autoincremented counter values over HTTP.
Downloads
3
Readme
Counter server
npm install counter-server
Install
npm install --save counter-server
Usage
var server = require('counter-server')
server.listen(3000)
You will need an http client to access the server.
API
GET /
Returns a hash-map of all counters and their values.
POST /inc/:id
Incremements, then returns a counter value. Undefined counters are assumed to equal 0, so so 1 is returned upon incrementing an undefined counter.
POST /reset/:id/:value
Sets a counter to a particular value.
POST /reset/:id
Sets a counter to 0.
POST /reset/all
Resets all counters to 0. (Do not create counters named "all".)
License
MIT