Node

Semantic Versioning with npm

October 13, 2023

Semantic Versioning, often referred to as SemVer, is a crucial convention within the Node.


Read More

Understanding Peer Dependencies in Node Modules

October 12, 2023

When working with Node.js and managing packages for your projects, you’re likely familiar with the dependencies and devDependencies sections in a package.


Read More

How to Download a File in NodeJS without any Third Party Libraries

October 26, 2022

If you need to download a file in NodeJS without using any third party libraries, then you can do the following.


Read More

How to Execute a Shell Script in NodeJS

October 25, 2022

If you need to execute a shell script in NodeJS, then you can use the exec keyword.


Read More

How to Uninstall npm packages

June 9, 2022

We typically install an npm package as follows: npm install <package_name> But how do we uninstall an npm package?


Read More

[Solved] npm ERR! could not determine executable to run

May 21, 2022

If you get the following message, then there’s a very easy fix:


Read More

[Solved] npm ERR! path node_modules/node-sass

May 20, 2022

If you get the following error and need a solution, then look no further!


Read More

[Solved] FirebaseError: Missing or insufficient permissions

December 10, 2021

Using Firebase and get the following error in the console?


Read More

[Solved] Error: Cannot find module ‘../lib/cli.js’

December 9, 2021

If you try and run npm i and get Error: Cannot find module '.


Read More

[Solved] Permission denied @ apply2files – /usr/local/lib/node_modules/expo-cli/node_modules/extglob/lib

December 4, 2021

If you have recently upgraded your MacOS operating system, you may get the following error in your terminal when installing some Homebrew packages:


Read More

Introduction to NPM

February 6, 2020

What is NPM? NPM stands for Node Package Manager, and is the default way to extend your Node applications.


Read More