npm init 初始化包,会生成package.json,其里面的main属性配置指向了入口文件 发布个人项目到npm上 npm publish 第一次发布时,需要创建用户: npm adduser 常规用户登录:npm login
: your-package 你的包和别人的包重名了,npm 里的包不允许重名,所以去npm搜一下,改个没人用的名字就可以了。 需要登录 npm ERR! code ENEEDAUTH npm ERR! need auth auth required for publishing npm ERR! need auth You need to authorize this machine using `npm adduser` 后面已经注明了,输入npm ad...
You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it.If you're using a common license such as BSD-2-Clause or MIT, add a current SPDX license identifier for the license you're using, like this...
mmp delete 删除自定义源:add添加的源都可以删除 mmp rename 删除自定义源:add添加的源都可以删除 mmp edit 编辑自定义镜像地址 npm的一些其他命令 npm install <package-name> --save:安装指定的包,并将其添加到 package.json 文件中的依赖列表中。 npm install <package-name> --save-dev:安装指定的包,并...
skip to:contentpackage searchsign in Pro Teams Pricing Documentation npm Search Sign UpSign In Build amazing things We're GitHub, the company behind the npm Registry and npm CLI. We offer those to the community for free, but our day job is building and selling useful tools for ...
you must verify your email before publishing a new package: https://www.npmjs.com/email-edit : your-package 这个是注册后没有验证邮箱,登录自己邮箱找到对应的邮件确认就好了。注意别选错了,注册 npm 时会发给你两个邮件,我当时就是眼瞎没有看到第二个。如果验证邮件过期的话登录自己的 npm 主页重新发...
npm install [<package-spec> ...] aliases: add, i, in, ins, inst, insta, instal, isnt, isnta, isntal, isntallDescriptionThis command installs a package and any packages that it depends on. If the package has a package-lock, or an npm shrinkwrap file, or a yarn lock file, the ...
varmath =require('mathtool')varaddRes = math.add(1,2);varminusRes = math.minus(1,2);console.log(addRes, minusRes);//输出:3,-1 4、一个另外的知识点 npm run start或者 npm run build, npm run dev等命令都是在执行package.json文件下scripts下的命令名字而已。
1. 创建一个package.json文件 发布到npm registry的包必须包含一个packge.json文件。 1. 必需name字段 要求: 1. 只能是一个单词,但是可以包含-或_ 2. 只能是小写字母 2. 必需version字段 version字段必须遵循语义化版本规范。 每变更一次,就需要修改一次版本号;告知使用者变更的范围和程度。
$ npm install npm-add -g Usage Add the latest verison of an npm package $ npm-add jade Then install $ npm install Add multiple packages $ npm-add jade socket.io Specify version $ npm-add 'jade 0.30.0' $ npm-add 'jade 0.30.0' 'socket.io 0.9.14' ...