zoukankan      html  css  js  c++  java
  • Node.js NPM Tutorial

    Node.js NPM Tutorial – How to Get Started with NPM?

    NPM is the core of any application that is developed in Node.js. It provides huge sets of libraries which acts as great tools for the Node.js developers and speeds up the complete application development process. Thus, in order to get started with Node.js, first, you need to have a clear understanding of NPM. This article on Node.js NPM Tutorial will help you in understanding the basic needs and fundamentals of NPM and eventually give a head start in Node.js.

    Below are the topics I will be covering in this article:

    Let’s get started.

    npm logo - Node NPM Tutorial - EdurekaWhat is NPM?

    NPM stands for Node Package Manager. It is the default package manager of Node.js that is completely written in JavaScript. It was developed by Isaac Z. Schlueter and released in the market in 2010. Since then, it was responsible for managing all the Node.js packages and modules. It is the world’s largest software registry which is completely free and open-sourced and developers use it for sharing software across the globe.

    The main two functionalities of NPM are:

    1. It provides online repositories for packages/modules for Node.js which you can easily search online on their official site.
    2. It also provides a Command Line Interface (CLI) which helps the developers in locally interacting with their systems.

    One thing which you must remember is, any package or module required in a Node.js project is needed to be installed via NPM. Apart from this, there are a lot more functionalities for which npm is being used. In the next section of this Node.js NPM Tutorial, I will be talking all about them.

    Need for NPM

    As I have already mentioned, NPM is used for various purposes. Below I have listed down the most fundamental ones:

    • It helps in incorporating the pre-built packages into our project
    • It assists in downloading various standalone tools which can be used right away
    • Using npx, you can even run packages without having to download it
    • Developers often use NPM to share their code with other NPM users across the globe
    • It creates various organizations for coordinating package maintenance, developers and coding.
    • Also helps in restricting the code to specific developers and forming virtual teams using orgs
    • Helps in managing and maintaining various versions of codes and their dependencies
    • NPM automatically updates the application with the update in the underlying codes.
    • It works like a community where you can find other developers working on similar projects or tasks.

    Now, that you know why NPM is necessary for a Node.js project, let’s delve deeper into it NPM fundamentals. To begin with, let’s first understand what actually are the npm packages or modules.

    NPM Packages

    A package is a group of code bundled up into a separate logical unit. These packages are handy tools for the developers as they help in abstracting the complexity and reduces the code size. There are around 800,000+ readymade code packages available, each one of which serves a different functionality. NPM is a kind of library which holds all these packages within to support Node.js application development.

    包是捆绑到单独的逻辑单元中的一组代码。这些软件包对开发人员来说是方便的工具,因为它们有助于抽象化复杂性并减少代码大小。大约有800,000多个现成的代码包可用,每个代码包提供不同的功能。NPM是一种库,其中包含所有这些软件包以支持Node.js应用程序开发

    But, if you don’t know exactly which package will serve your purpose best, it will be the same as finding a needle in the hay. Thus, to give you a little push, below I have listed down the most popularly used libraries of NPM:

    但是,如果您不确切知道哪种包最能满足您的目的,那么就像是在干草堆中如针扎一样。因此,为了给您带来一点推动力,下面我列出了最常用的NPM库

    1. express
    2. body-parser
    3. nodemon
    4. lodash
    5. babel-core
    6. async
    7. debug
    8. react
    9. request
    10. moment

    But before you can use any of these packages you need to install NPM in your system.

    In the next section of this Node.js NPM tutorial, I will be sharing how to install NPM and various packages.

    NPM Installation

    Node.js version 0.6.3 onwards, NPM was included as a default package in Node.js. Thus, there is no need to install it explicitly. To know how to install Node.js in your system, you can refer to my Node.js Installation article.

    In order to check whether NPM is already there in your system or not, you just need to type in the below command.

    npm -v
    

    Now that installing NPM is out of the way, let me show you how to install, update and delete packages using NPM CLI (Command Line Interface). But before you start installing or downloading your packages, one thing you need to know is the packages can be installed in two ways, about which I will be talking in the next section of this Node.js NPM Tutorial.

    Local and Global Packages

    As I have already mentioned, the packages are categorized under two categories depending on their mode of installation:

    1. Local Packages
    2. Global Packages

    1. Local Packages

    These are the packages which are installed within the directory where you will be executing the install command and will be accessible by only your project. Local packages are contained by a node_modules folder under your main project directory.

    Below is the command to install packages locally:

    npm install <package-name>
    

    2. Global Packages

    These are the packages which are installed at a single place in your system irrespective of the place where you execute your run command. They are called global packages as they can be used by any of the projects present in your system. To install a package globally, you need the below-given command:

    npm install -g <package-name>
    

    Few of the most used global packages are:

    • npm
    • create-react-app
    • vue-cli
    • grunt-cli
    • mocha
    • react-native-cli
    • gatsby-cli
    • forever
    • nodemon

    The major difference between local and global packages is that the Global packages are used for anything that is needed to be accessed from the shell. On the other hand, the usage of local packages is typically limited to your applications or projects. But in general, it is a good practice to install the packages locally. This is because you might be having a number of Node.js projects in your system having a different version of each of the packages used in them.

    本地程序包和全局程序包之间的主要区别在于,全局程序包用于需要从外壳程序访问的所有内容。另一方面,本地软件包的使用通常仅限于您的应用程序或项目。但是通常,在本地安装软件包是一个好习惯。这是因为您的系统中可能有许多Node.js项目,它们中使用的每个软件包都有不同的版本

    Now, if you update a global package then it will update it in all the projects it has been used in your system. It can cause a huge disaster as few of these packages might become incompatible with the further dependencies used in the projects. But in case of local packages, you can always keep your version of a package and update it according to your own needs. In terms of resource utilization, it might seem like a waste of memory but it has relatively less negative impacts.

    现在,如果您更新全局软件包,它将在系统中使用过的所有项目中对其进行更新。由于其中一些软件包可能与项目中使用的其他依赖项不兼容,因此可能会造成巨大的灾难。但是对于本地软件包,您始终可以保留软件包的版本并根据自己的需要进行更新。在资源利用率方面,这似乎是浪费内存,但负面影响相对较小

    Thus, you should make a package global only when it has a CLI executable command and can be reused throughout the projects in your system.

    因此,仅当软件包具有CLI可执行命令并且可以在系统中的所有项目中重复使用时,才应使其成为全局软件包

    You can also check how many global packages you have in your system by typing in the below command.

    您还可以通过输入以下命令来检查系统中有多少个全局软件包

    npm list -g --depth 0
    

    In case you want to remove a package from your system you can just type in the below command:

    如果您想从系统中删除软件包,只需输入以下命令

    npm uninstall <package_name>
    

    Here I would like to slip in a piece of advice, that is whenever you are installing the packages make sure you include –save flag with it.

    在这里,我想提一点建议,那就是每当您安装软件包时,请确保在其中包含–save标志

    npm install <package_name> --save
    

    It will ensure that your requested module has been added your package.json file.

    它将确保您请求的模块已添加到package.json文件中

    Now, what is package.json and why it is needed, I will tell you in the next section of this Node.js NPM Tutorial.

    Package.json File

    The package.json file in Node.js is considered to be the heart of an application. It is nothing but the manifest file that holds the metadata of the project. Thus, it is very important to understand this file in order to work a Node project. The package.json file is usually present in the root folder of any Node.js application and looks like the below.

    Node.js中的package.json文件被认为是应用程序的核心。只是清单文件包含项目的元数据。因此,理解此文件对于工作Node项目非常重要。package.json文件通常位于任何Node.js应用程序的根文件夹中,如下所示

    {
        "name": "samplenode",
    	"version": "1.0.0",
    	"description": "Unity demo on how to build a Node.js application",
    	"main": "script.js",
    	"scripts": {
    		"start": "node script.js"
    	},
    	"author": "Unity",
    	"license": "ISC",
    	"dependencies": {
    		"body-parser": "^1.19.0",
    		"express": "^4.17.1",
    		"express-handlebars": "^4.0.4",
    		"nodemon": "^2.0.4"
    	},
    	"devDependencies": {},
    	"repository": {},
    	"bugs": {}
    }
    

    As you can see in the above code, package.json file holds definitions of various properties used in a project. Let us understand each of these properties in detail and see why they are important in a Node.js project:

    如您在上面的代码中看到的,package.json文件保存了项目中使用的各种属性的定义。让我们详细了解这些属性中的每一个,并了解它们为什么在Node.js项目中很重要:

    1. Name: Holds the name of the project provided by the user

      名称: 保存用户提供的项目的名称

    2. Version: Depicts the version of the application and must follow the semantic version rules.

      版本: 描述应用程序的版本,并且必须遵循语义版本控制规则

    3. Description: Holds the explanation & purpose of the application, technologies used like React, MongoDB, etc.

      描述: 包含应用程序的解释和目的,以及React,MongoDB等使用的技术

    4. Main: Points to the entry point/file of the application

      Main: 指向应用程序的入口点/文件

    5. Scripts: Contains the list of scripts which are required to be included in the application to execute properly

      脚本: 需要正确包含应用程序中的脚本列表

    6. Author: Holds the name of the primary developer of the project

      作者: 拥有项目主要开发人员的姓名

    7. License: License to which the application confirms are mentioned in this key-value pair

      许可证: 此键值对中提到了应用程序确认时的许可证

    8. Dependencies: Depicts the list of 3rd Party packages or modules installed using NPM

      依赖关系: 描述使用NPM安装的第三方包或模块的列表

    9. DevDependencies: Dependencies that are used only in the development part of the app are specified here

      DevDependencies: 在此指定仅在应用程序的开发部分中使用的依赖项

    10. Repository: Contains the information regarding the type & URL of the repository where the code of the application resides

      包含有关应用程序代码所在的存储库的类型和URL的信息

    11. Bugs: URL and email where the bugs in the application should be reported are mentioned here

      在此处提到报告应用程序中的错误的URL和电子邮件

    With this, we come to an end of this Node.js NPM Tutorial. Hope you were able to understand what exactly is NPM and how it helps in building a Node.js application. Now you can get your hands dirty with Node.js. To get started, you can refer my Node.js Tutorial article.

  • 相关阅读:
    花儿飘落何处
    别了,攀枝花
    致我心爱的梦中女孩
    解锁华为云AI如何助力无人车飞驰“新姿势”,大赛冠军有话说
    技术实操丨HBase 2.X版本的元数据修复及一种数据迁移方式
    技术实践丨手把手教你使用MQTT方式对接华为IoT平台 华为云开发者社区
    必须收藏:20个开发技巧教你开发高性能计算代码
    原来AI也可以如此简单!教你从0到1开发开源知识问答机器人
    诸多老牌数据仓库厂商当前,Snowflake如何创近12年最大IPO金额
    详解GaussDB(DWS) explain分布式执行计划
  • 原文地址:https://www.cnblogs.com/PrimerPlus/p/12924258.html
Copyright © 2011-2022 走看看