node_01_自定义模块(先创建package.json)
Posted where there is a will, there i
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node_01_自定义模块(先创建package.json)相关的知识,希望对你有一定的参考价值。
package.json必须是json格式
你必须确保所有的字符串,包括属性名,都是使用双引号而不是单引号
{
"name": "163",
"version": "1.0.0",
"description": "A Vue.js project",
"private": true,
"dependencies": {
"express": "^4.16.2",
"vue": "^2.5.2",
"vue-router": "^3.0.1"
},
}
查看package.json文件所有的属性文档,可以使用如下命令:
$ npm help json
小贴士:如果你不想发布你的模块,在package.json中加入"private":"true"。这样可以避免误发布。
以上是关于node_01_自定义模块(先创建package.json)的主要内容,如果未能解决你的问题,请参考以下文章