Skip to content

Instantly share code, notes, and snippets.

@nberlette
Created June 28, 2021 11:12
Show Gist options
  • Save nberlette/4ef87936c3b553861488bd91bcd9676c to your computer and use it in GitHub Desktop.
Save nberlette/4ef87936c3b553861488bd91bcd9676c to your computer and use it in GitHub Desktop.
2 lines of code to require() JSON in ES modules.
#!/usr/bin/env node
import { createRequire } from "module"
const require = createRequire(import.meta.url)
const data = require("./data.json")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment