1、Node版本 >= 13
2、使用 ES6 模塊
a.js
export const A = 'A';
index.js
import { A } from './a.js';
console.log(A);
3、創建 package.json
{ "type": "module" }
4、直接運行即可
$ node index.js
其他方法參考 https://nodejs.org/api/esm.html
a.js
export const A = 'A';
index.js
import { A } from './a.js';
console.log(A);
{ "type": "module" }
$ node index.js
其他方法參考 https://nodejs.org/api/esm.html
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。