msm
msm

Reputation: 33

Size of localStorage in node.js?

What is the size of localStorage in node.js ?

I have used localStorage on browser side , it has a a limit of around 5 MB, but i do not know what is the size limit of localStorage in node.js ?

Upvotes: -1

Views: 361

Answers (1)

mscdex
mscdex

Reputation: 106696

There is no localStorage in node.js, that's purely a browser-side thing. If you need persistent storage, you should look into using a database module or key-value store of some kind.

Upvotes: 3

Related Questions