How should I parse JSON using node.js? Is there some module which will validate and parse JSON securely?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can simply use node.js is built on V8, which provides the global object |
|||||||||||||||
|
|
you can require .json files.
For example if you have a
or (file extension can be omitted):
note that |
|||||||||||
|
|
I'd like to mention that there are alternatives to the global JSON object. JSON.parse and JSON.stringify are both synchronous, so if you want to deal with big objects you might want to check out some of the asynchronous JSON modules. Have a look: https://github.com/joyent/node/wiki/Modules#wiki-parsers-json |
|||||
|