Last active
January 5, 2018 11:34
-
-
Save lhuria94/b4caa4e7b04fcfb2a871bddcee3d6b3c to your computer and use it in GitHub Desktop.
Node.js (Notes) -- Beginner Part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
------------------------------------------------------------- | |
// The process object is a global that provides information about, | |
// and control over, the current Node.js process. | |
// As a global, it is always available to Node.js applications without using require(). | |
// Instead of depending on process.argv property | |
// we can use a third party node module called `yargv` as process.argv | |
// can be a bit messy. | |
------------------------------------------------------------- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment