CJS
A group organized by Kevin Dangoor
Uses require and module.exports syntax
Official module system for Node.js
- 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