CommonJS là một module pattern hỗ trợ cho tất cả các phiên bản Node.js. Với CommonJS, JavaScript obj
https://viblo.asia/p/javascript-promises-classes-es6-modules-and-commonjs-07LKX48DKV4
// custom.js
const log = (message) => console.log(message)
module.exports = {log}// index.js
const {log} = require('./custom.js')
log("CommonJS")npm install -g browserifybrowserify index.js > bundle.js<!-- index.html -->
<script src="bundle.js"></script>PreviousES6 Modules and CommonJS (Oke) Một ví dụ quý hơn vàng :(((Next------------------------Start webpack ----------------------
Last updated
