GGGabriel Godwininblog.gabrielgog.dev·Aug 14, 2021 · 2 min readUsing an external library with node and npmNodeJs is an open-source, cross-platform, backend JavaScript runtime environment that runs on the V8 engine and executes JavaScript code outside of the web browser - Wikipedia Your best guide to installing nodeJs on your computer is referencing th...00
GGGabriel Godwininblog.gabrielgog.dev·May 14, 2021 · 2 min readAsynchronous programmingAsynchronous programming allows tasks to run independently without blocking the main program flow. By default, most programming languages—including JavaScript—are synchronous, meaning operations are executed one by one, in sequence. JavaScript operat...01L