Skip to content

Instantly share code, notes, and snippets.

View Saif-Shines's full-sized avatar
🎵
Music time!

Saif Saif-Shines

🎵
Music time!
View GitHub Profile
@thegitfather
thegitfather / vanilla-js-cheatsheet.md
Last active July 2, 2024 14:45
Vanilla JavaScript Quick Reference / Cheatsheet
@PintoGideon
PintoGideon / Digging into Node.js.md
Last active August 28, 2022 03:47
Node.js - Understanding the hard Parts

Each Node.js process has a set of built-in functionality, accessible through the global process module. The process module need not to be required - it is somewhat literally a wrapper around the currently executing process, and many of the methods it exposes are actually wrappers around calls into some of Nodejs core C libraries.

process.stdout.write("hello world")

The simplest way of retrieving arguments in Nodejs is via the process.argv array. This is a global object that you can use without importing any additional libraries to use it. You simply need to pass arguments to a Node.js application, just like we showed earlier, and these arguments can be accessed within the application via the process.argv array.