This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis
ES modules are still reasonably new in Node.js land (they're stable since Node 14). Modules come with a built-in module system and features such as top-level await.
I just read an informative post on ES modules by Pawel Grzybek and learned that you can't import JSON files in ES modules today. That's a real bummer because I'm pretty used to doing const data = require('./some-file.json')
in Node.js.
While it will be possible to import JSON from within modules eventually, the implementation is still behind a flag (--experimental-json-modules
).
This post includes ways to deal with JSON in ES modules today.
The Node.js documentation advises to use the fs
module and do the work of reading the files and parsing it yourself.
import { readFile } from 'fs/promises';
const json = JSON.parse(
await readFile(
new URL('./some-file.json', import.meta.url)
)
);
The documentation also states that you can use createRequire
to load JSON files. This is the way Pawel advises in his blog post.
createRequire
allows you to construct a CommonJS require
function so that you can use typical CommonJS features in Node.js EcmaScript modules.
import { createRequire } from "module";
const require = createRequire(import.meta.url);
const data = require("./data.json");
I don't know. ?♂️ Neither option feels good, and I'll probably stick to the first option because it's more understandable.
Let's see when stable JSON modules land in Node.js!
Reply to Stefan
This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis
Stefan Judis | Sciencx (2021-05-15T22:00:00+00:00) How to import JSON files in ES modules (Node.js) (#snippet). Retrieved from https://www.scien.cx/2021/05/15/how-to-import-json-files-in-es-modules-node-js-snippet/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.