Skip to content

Instantly share code, notes, and snippets.

@patwey
Forked from rrgayhart/require.markdown
Last active February 11, 2016 19:04
Show Gist options
  • Save patwey/1ef9c9b2fa03a1047f1c to your computer and use it in GitHub Desktop.
Save patwey/1ef9c9b2fa03a1047f1c to your computer and use it in GitHub Desktop.
The Concept of Require

From: Node.js, Require and Exports and Organize Your Code with RequireJS

In the context of Node, what is a module?

Modules are small components of an application that serve a specific purpose.

The code examples from the second blog post look very different from the first. Why?

In the first blog post, specific functions from the file are being exported as a module.

In the second post, the modules are being defined.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment