[Solved] What are Node.js style modules?


Node.js-style modules have a defined API.

Regular JavaScript modules doesn’t really exist, although EcmaScript 6 will bring a standard module format.

jQuery modules are little more than scripts which bind objects to the jQuery namespace and expect a jQuery object as this when they are called.

solved What are Node.js style modules?