1.0.0 • Published 6 years ago

express-remote-keystore v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

express-remote-keystore

Express middleware for accessing a keystore over HTTP.

Uses node-persist, so not suitable for system without a persistent filesystem.

var app = express()
var e = erk()
app.use('/get', e.get)
app.use('/set', e.set)


// example client
http.get('http://localhost:8080/set?key='+key+'&value='+value)
http.get('http://localhost:8080/set?key='+key)