如何使用"npm 安装"下载依赖项?



当我导航到文件夹时,我有一个package.json文件,例如:angular app(其中包含package.json)并使用命令npm install下载6个依赖项只需要10分钟,我做错了什么为什么完成后需要这么多时间,它下载了一些25-30个不正确的文件。我正在使用窗户。

{
"name": "angular-2",
"version": "1.0.0",
"scripts": {
"start": "concurrently "npm run tsc:w" "npm run lite" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"lite": "lite-server",
"typings": "typings",
"postinstall": "typings install"
},
"license": "ISC",
"dependencies": {
"angular2": "2.0.0-beta.13",
"systemjs": "0.19.25",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "0.6.6"
},
"devDependencies": {
"concurrently": "^2.0.0",
"lite-server": "^2.1.0",
"typescript": "^1.8.9",
"typings":"^0.7.11"
}
}

你只需要运行这个命令一次,除非你的package.json改变,否则不要一次又一次地运行它。

可能是因为您正在运行旧版本?尝试升级到最新版本的节点和 npm:

npm install -g npm@latest

npm update npm -g

-

由于你在Windows上,我也听说过有人使用巧克力,这似乎对Windows上的包管理相当不错。

您需要使用以下命令: --save-dev:包将出现在你的devDependencies中。考虑安装gulp-uglify的示例。

npm install gulp-uglify --save-dev

你可以使用yarn 而不是使用 npm。与 npm 相比,这很快,但您说只有 6 个依赖项,需要 10 分钟可能是您的互联网速度背后的原因。

https://yarnpkg.com/lang/en/docs/getting-started/

相关内容

  • 没有找到相关文章

最新更新