Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How should I parse JSON using node.js? Is there some module which will validate and parse JSON securely?

share|improve this question

4 Answers

up vote 177 down vote accepted

You can simply use JSON.parse.

node.js is built on V8, which provides the global object JSON[docs]. The definition of the JSON object is part of the ECMAScript 5 specification.

share|improve this answer
Didn't think of that--I guess I haven't done enough JavaScript in the browser... – Tikhon Jelvis Apr 20 '11 at 7:14
@TikhonJelvis: Yes, fortunately it is :) – Felix Kling Apr 20 '11 at 7:15
Oops, too much editing going on. – Tikhon Jelvis Apr 20 '11 at 7:15
9  
@snapfractalpop: The documentation only describes functions, etc, which are part of node.js. Standard JavaScript features are part of V8, node.js is built on. I updated the answer accordingly. – Felix Kling Mar 21 '12 at 19:09
1  
Can't upvote your answer twice... but I can upvote the comment! :) – snapfractalpop Mar 21 '12 at 21:24
show 4 more comments

you can require .json files.

var parsedJSON = require('file-name');

For example if you have a config.json file in the same directory as your source code file you would use:

var config = require('./config');

or (file extension can be omitted):

var config = require('./config.json');

note that require only reads the file once, following calls return the result from cache

share|improve this answer
2  
If you are using this method to parse the file make sure to take the path into account for the require. For example, you might need to do something like this: require './file-name-with-no-extension' (for example if the file is in the current directory) – SnapShot Jun 20 '12 at 21:36
@SnapShot true, added a concrete example. – eliocs Jun 21 '12 at 10:41
2  
Note that the response is cached. E.g. if you put above require call in a function, call the function, change the JSON file, and call the function again, you'll get the old version of the JSON file. Has caught me out a couple of times! – Ben Clayton Apr 9 at 20:42

use the JSON object:

JSON.parse(str);
share|improve this answer

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

share|improve this answer
This is especially true if one expects JSON data from incoming connections. If malformed JSON is being parsed by JSON.parse your whole application is going to crash or, using process.on('uncaughtException', function(err) { ... });, there will eventually be no chance to send a "malformed JSON" error to the user. – Paul Engstler Feb 2 at 11:25
Which one is async parser ? I did not find it. – bxshi Feb 4 at 9:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.