Skip to main content

How to Download & Install Node.js and npm on Windows ?

How to install Node.js & npm on Windows

In the first steps in using Node.js is the installation of the Node.js libraries on the client system. Now a day npm is coming with Node.js file. To perform the installation of Node.js, follow the below steps;
Step 1) Go to the site https://nodejs.org/en/download/ and download window installer file for node.js. In our example, we are going to download the 64-bit setup files for Node.js..



Step 2) Right click on the downloaded .msi file to start the installation. Click the Install option on the first screen to begin the installation.


Step 3) In the next screen, click the "Next" button to continue with the installation


Step 4) Now tick/click on "checkbox I accept the terms in the License Agreement" and then click on "Next" button



Step 5) It will automatically select the path or you can optionally choose path by using "Change " button. Here we are going to Just Click on "Next" button.



Step 6) Accept the default components and click on the "Next" button.


Step 7) Click on "Next" button and it will install the default.


Step 8) Finally Click on "Install" button to start installation. If it is asking for any permission,please allow/accept it.



Step 9) Click on "Finish" to Close the window. Now Node.js & npm has installed in our system.

Check & confirm that which version of node.js & npm has installed in our system-

Node.js version Command- node --version & click enter

Here Node.js version 12.18.2 has installed as shown below



npm version Command- npm --version & click enter

The below window is showing the result npm version 6.14.5




Comments

Popular posts from this blog

How to get list item entity type full name of a SharePoint list using REST API ?

REST API to get list item entity type full name: Bullet method (small and accurate): siteurl( AbsoluteUrl ) + /_api/Web/Lists/getbytitle('ListName')/ListItemEntityTypeFullName or   _spPageContextInfo.webAbsoluteUrl + "/_api/Web/Lists/getbytitle('SPList')/items?select=EntityTypeFullName **Use this above API just replacing absolute site URL and list name **Then put this prepared URL into browser and press enter button and obtain list entity type full name of related list. **You will get ListEntityTypeFullName like " SP.Data.EmployeeListItem " **Employee(may be a list name) How it is? Is it working or not you can tell us using comment section ?

How to send email using SharePoint REST API in jQuery/JavaScript?

  Send email using SharePoint REST API in jQuery/JavaScript: We can able to send email to the SharePoint user using below REST API on SharePoint Online. We need to load SP.js file in code. we must need to give valid SharePoint user to send email. We can able to send email to valid SharePoint user of same organization.      var   restAPI  =  _spPageContextInfo . webAbsoluteUrl  +  "/_api/SP.Utilities.Utility.SendEmail" ;      $ . ajax ({          contentType:   'application/json' ,          url:   restAPI ,          type:   "POST" ,          data:   JSON . stringify ({              'properties' :  {             ...