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 ?

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.