• npm 基本命令行


    npm是随同NodeJS一起安装的包管理工具。

    检查版本

    npm -v

    升级npm

    npm install npm -g

    使用淘宝镜像升级

    cnpm install npm -g

    npm install express          # 本地安装  区别只在于  -g
    npm install express -g   # 全局安装
    

    安装淘宝镜像的命令行: 

    npm install -g cnpm --registry=https://registry.npm.taobao.org

    初始化项目:

    npm init

    安装依赖

    npm install 或者 cnpm install

    Package.json 属性说明

    • name - 包名。

    • version - 包的版本号。

    • description - 包的描述。

    • homepage - 包的官网 url 。

    • author - 包的作者姓名。

    • contributors - 包的其他贡献者姓名。

    • dependencies - 依赖包列表。如果依赖包没有安装,npm 会自动将依赖包安装在 node_module 目录下。

    • repository - 包代码存放的地方的类型,可以是 git 或 svn,git 可在 Github 上。

    • main - main 字段指定了程序的主入口文件,require('moduleName') 就会加载这个文件。这个字段的默认值是模块根目录下面的 index.js。

    • keywords - 关键字

     
  • 相关阅读:
    [湖南集训]谈笑风生
    【SCOI2010】序列操作
    ●BZOJ 3994 [SDOI2015]约数个数和
    ●BZOJ 3309 DZY Loves Math
    ●UOJ 21 缩进优化
    ●BZOJ 2693 jzptab
    ●BZOJ 2154 Crash的数字表格
    ●BZOJ 3529 [Sdoi2014]数表
    ●2301 [HAOI2011] Problem b
    ●BZOJ 2820 YY的GCD
  • 原文地址:https://www.cnblogs.com/alvin553819/p/7127149.html
Copyright © 2020-2023  润新知