🔰CommonJS
the standard used in Node.js for working with modules.
// import
const M = require('./module.js'); // import whole module as an object
const {a, b} = require('./module.js'); // import part of the module
// export
module.exports = { a, b }; // export individual bindings
module.exports = f; // export a single object/function.Last updated