Javascript CommonJS CJS
CommonJS (CJS) is a format introduced by Node.js that allows sharing functionality between isolated JavaScript modules.
const a = require('./a')
module.exports.a = aReference
Modules: CommonJS modules | Node.js v21.6.0 Documentation Understanding module.exports and exports in Node.js — SitePoint