javascript - CommonJS support in node.js - why obsolete and/or how does it work? -
some time ago read entire node.js platform relies on commonjs
specification of module loading. precisely, api require
calls:
var abc = require('./abc');
unfortunately, can't recall source - that's how understood it. , now, wanted refresh knowledge commonjs, found node.js dropped commonjs in 2013. quote:
in may 2013, isaac z. schlueter, author of npm, package manager node.js, said commonjs being made obsolete node.js, , avoided core node.js developers.
my question - standard node.js bases require
functions? there standard - or did node.js implementation fork out commonjs? reasons making obsolete?
Comments
Post a Comment