Find the host’s cloud provider using Node.Js

If you ever wanted to inject or use cloud provider-specific code in the codebase or DevOps work, You can now do it very easily thanks to cloud-detect-js(https://github.com/vithalreddy/cloud-detect-js#readme) Node.js Module, which helps to determine host machine’s cloud provider using machine’s file system and metadata. Detect Host’s Cloud Provider This Module Provides a very simple API as … Read more

How to run shell script file or command using Nodejs?

nodejs npm

If you ever wanted to run some automation script or file in your Unix/Linux machine using nodejs? It may be to build your binaries from source code or for some tooling in your dev workflow. Nodejs Provides well-matured APIs for doing these operations and there are plenty of npm modules to ease the pain creating … Read more

npm self update – Selfupdate your global NPM package

nodejs npm

npm is the package manager for JavaScript and the world’s largest software registry.Daily thousands of packages downloaded using npm and It would be really good to auto-update npm or self update npm. Isn’t it an awesome hack? Yes, it is.all thanks jviotti. Who developed a node package to auto update npm globally using command line command, we … Read more

NPM unistall unused packages in Node.js

nodejs npm

Consider, you’re developing a shiny new node.js project and according to your need, design, and business logic, you’ve installed many NPM packages, but at the end you realized, that you don’t need many packages, so now you want to remove all unused npm packages and sub-modules of it, which is not defined in package.json, for that … Read more

Fix node is not recognized as an internal or external command Error

Node.JS images, logo

Errors, Every Programmers Nightmare!, Maybe not, Solving a simple error can take so many sleepless nights, But All thanks Development in Modern Technology and Rapid growth of Google Search Engine and Ever growing Community of developers worldwide, now you can search your error in google and it’s already been solved by other fellow developers, Today we … Read more

How to automatically build the package.json file for NodeJS Projects

NODEJS NPM Console

Every Node.JS Project requires package.json file as it contains everything related to project to run, deploy and manage the NodeJS application on cloud or server as it contains Node Module dependencies, node engine required and other important information related to Specific Project. So in This NodeJS How-To Guide, we will discuss How to automatically build the … Read more

How To Exit from NodeJS Console From Script and Command

nodejs console

In this article of Nodejs Development Tutorials series, we are going to learn How to exit from Node command line on MAC, Windows, and Linux and How To Exit from Nodejs Script. So let’s start: How to exit from Nodejs command line on MAC, Windows, and Linux using CTRL+C Let’s consider the situation where Nodejs is connected to the … Read more

How-To find the version of an installed NodeJS or NPM Package

NodejS NPM HD Pics

Hello Developers, Sometimes you need to know the version of installed Node.js or NPM Package to know its compatibility issues with other NPM Packages and Restful APIs, So Continuing our NodeJS Development Tutorials series, In this Guide, we are going to learn How to find the version of an installed NPM package or How to check version of … Read more

Introduction MEAN Stack Development [For Developers & Beginners]

How MEAN Stack Works

Mean Stack   Javscript – As They say “One language to Rule Them All”   MEAN stack is a collection of JavaScript-based technologies that includes MongoDB, ExpressJS, AngularJS, and NodeJS. Following image clearly, explains that how these technologies work together to develop an application or the web app. AngularJS or Angular.io (Powered by Google) being … Read more