Skip to content

Instantly share code, notes, and snippets.

@lhuria94
Last active January 5, 2018 11:34
Show Gist options
  • Save lhuria94/b4caa4e7b04fcfb2a871bddcee3d6b3c to your computer and use it in GitHub Desktop.
Save lhuria94/b4caa4e7b04fcfb2a871bddcee3d6b3c to your computer and use it in GitHub Desktop.
Node.js (Notes) -- Beginner Part 1
-------------------------------------------------------------
// 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