CJS
A group organized by Kevin Dangoor
Uses require and module.exports syntax
Official module system for Node.js
const doSomething = require('./doSomething.js'); //exporting module.exports = function doSomething(n) { // do something }
- CJS imports module synchronously
- it will give you a copy of the imported object
- CJS will not work in the browser
- It will have to be transpiled and bundled

Seonglae Cho