ndoejs

  1. // 导出
  2. module.exports class Text{}
  3. exports.num = 1;
  4. // 导入
  5. const {num} = require("./index.js");
  6. const Text = require("./index.js");

es6

一个非常尴尬的事情是,node13支持es6模块了 ~~~~~ 啊哈哈

  1. // 导出
  2. export const num = ()=> 123;
  3. default export class Text{}
  4. // 导入
  5. import {num} from "./index.js";
  6. import Test from "./index.js";
  7. import Text as t from "./index.js"
  8. // 直接导出
  9. export {num} from "./index.js"
  10. export * from "./index.js"e

浏览器中使用

注意,