I tried searching the web for a node module that can access the client's localStorage but wasn't able to find anything. Anyone know of one?
question from:https://stackoverflow.com/questions/10358100/how-to-access-localstorage-in-node-jsI tried searching the web for a node module that can access the client's localStorage but wasn't able to find anything. Anyone know of one?
question from:https://stackoverflow.com/questions/10358100/how-to-access-localstorage-in-node-jsYou can use :
node-localstorage
npm module to use localStorage
at the nodejs server side.
var LocalStorage = require('node-localstorage').LocalStorage,
localStorage = new LocalStorage('./scratch');