ソースコード package.json { "scripts": { "start": "node -r esm index.js" }, "dependencies": { "esm": "^3.2.25" } } hoge.js export const hoge = str => { return str; }; index.js import { hoge } from './hoge'; console.log(hoge('hello')); コマンド bash $ npm start