Basic

创建 package.json

consumed by npm

init

npm init -y

or

yarn init -y

Modules 模块化

Common JS

const http = require("http");

module.exports = {
  http: http,
};

ECMAScript Modules

import http from "http";

export default {
  http: http,
};

Config in package.json

{
  "type": "module" // default: "commonjs"
}