我一直在使用角度和使用凉亭作为包管理器.对于当前项目,我想在浏览器中使用一些npm模块,并从browserify开始
对于我的初学者项目,我能够npm安装角度angular-ui-router –save,因为他们有npm packages,但我习惯用bower安装来安装依赖项
构建我的browserify-angular应用程序,如何安装未在npm上列出的依赖项?从根本上说,browserify可以替代bower安装,或者我可以使用bower的bower吗?
对于当前项目,我有一个package.json看起来像这样:
{
"name": "browserify-begin",
"version": "0.0.0",
"dependencies": {
"7digital-api": "^0.15.2",
"angular": "^1.2.16",
"angular-ui-router": "^0.2.10"
},
"devDependencies": {
"browserify": "^4.1.5",
"grunt": "^0.4.5",
"grunt-browserify": "^2.1.0",
"grunt-contrib-connect": "^0.7.1",
"grunt-contrib-copy": "^0.5.0"
}
}
最佳答案 您可以使用npm
without them being published to npm安装git-repos.
"dependencies": {
"package": "git+https://github.com/path/to/repo#commitSHAhash"
}