博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Node.js] npm init && npm install
阅读量:6731 次
发布时间:2019-06-25

本文共 1130 字,大约阅读时间需要 3 分钟。

npm init:

For create package.json file which will recode the dependence.

 

npm install:

You can also write like:

npm i

This is a shortcut way to write npm install.

 

For example. we want to install undersocre.js

npm install -S underscore

The way '-S' works is it will write down the dependence into the package.json we just create:

{  "name": "commonJSBroswerfiy",  "version": "0.0.0",  "description": "",  "main": "index.js",  "scripts": {    "test": "echo \"Error: no test specified\" && exit 1"  },  "author": "",  "license": "MIT",  "dependencies": {    "underscore": "^1.7.0"  }}

 

dev-dependence:

npm install -D bower

'-D' is to add dependence into devdependence which only available for the co-work.

{  "name": "commonJSBroswerfiy",  "version": "0.0.0",  "description": "",  "main": "index.js",  "scripts": {    "test": "echo \"Error: no test specified\" && exit 1"  },  "author": "",  "license": "MIT",  "dependencies": {    "underscore": "^1.7.0"  },  "devDependencies": {    "bower": "^1.3.12"  }}

 

If we have package.json, other people download our project and they just need to run:

npm i

They can install all the dependence.

 

转载地址:http://vsfqo.baihongyu.com/

你可能感兴趣的文章
无线网络破解________破解wap密码..............
查看>>
Matlab实现求a到b被c整除的个数
查看>>
【云栖大会】阿里巴巴集团技术委员会主席王坚:每个城市都需要数据大脑
查看>>
MAC 下开发 不区分大小写问题及解决
查看>>
[LeetCode]--26. Remove Duplicates from Sorted Array
查看>>
Spark 多个Stage执行是串行执行的么?
查看>>
.World域名终端:BBC 英国广播公司 世界最大的新闻广播机构之一
查看>>
LINUX类主机JAVA应用程序占用CPU、内存过高分析手段
查看>>
OAuth 2.0 授权原理
查看>>
golang reflect
查看>>
Java基础之集合
查看>>
Android应用生死轮回的那些事儿(3) - 武器库(1)-权限管理相关API
查看>>
Jasmine中文指南
查看>>
Android创建和使用数据库
查看>>
实操 Web Cache
查看>>
weex-style-loader: 给你熟悉的style开发体验
查看>>
hidp3.0 sql
查看>>
PL/SQL语言基础(原创)
查看>>
解决excel中文件1指定的列复制到文件2中指定的列
查看>>
[C#]二维码(QR Code)生成与解析
查看>>