How to access localStorage in node.js?

local-storage, node.js

Solution

You can use :

`node-localstorage` npm module to use `localStorage` at the nodejs server side.

var LocalStorage = require('node-localstorage').LocalStorage,
localStorage = new LocalStorage('./scratch');

Problem

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?

Original source