LoginSignup
76
74

More than 5 years have passed since last update.

node.jsでjsonファイルの読み込み

Last updated at Posted at 2013-07-19

今までテキストファイルとして読み込んで、 JSON.stringifyでいちいちパースしていたけれど、requireで読み込めばいいだけだった orz

var json = require('./test.json');
console.log(json);

※ このやり方で大量のJSONデータを読み込むとメモリーリークを起こす場合があるそうです。詳しくはコメント欄を参照してください。

76
74
6

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
76
74