如何使用Visual Studio配置bower?

时间:2015-08-16 14:05:43

标签: javascript node.js visual-studio bower bower-install

随着我的Web项目的复杂性不断增长,我意识到手动下载外部JavaScript库非常容易出错,耗时并且随着时间的推移使项目的可维护性降低。

虽然Visual Studio有NuGet包管理器,但它没有bower那么强大。并非所有外部库都在NuGet上发布。

但是如何使用Visual Studio配置bower没有明确的帮助。请帮忙!

2 个答案:

答案 0 :(得分:13)

enter image description here

随着我的Web项目的复杂性增长,我意识到手动下载外部JavaScript库容易出错,耗时并且随着时间的推移使项目的可维护性降低。

虽然Visual Studio有NuGet包管理器,但它没有bower那么强大。并非所有外部库都在NuGet上发布。

所以,我决定采取措施并开始使用凉亭。

我的项目结构现在更加清洁,易于维护。

这里我列出了步骤,我们需要用Visual Studio配置bower。

http://bower.io/#install-bower已提供使用凉亭的详细步骤。在这里,我将列出步骤,我接手

  • - 安装凉亭

  • - 使用Visual Studio

  • 进行配置
  • - 下载示例包 - (AngularJS)

Bower需要node,npm和git for windows。

在继续之前,请安装以下

第1步

打开命令提示符并执行命令

npm install -g bower

enter image description here

  

如果您在公司代理服务器后面,则上述步骤可能会失败。加上   npm中的代理服务器设置,执行以下2个命令   命令提示符

     

npm config set proxy http://proxy.myCompany.com:80

     

npm config set https-proxy http://proxy.myCompany.com:80

     

完成后,尝试安装   再次凉亭

第2步

从命令提示符导航到Visual Studio Project文件夹。

执行命令

bower init

enter image description here

  • 将此文件包含在Visual Studio项目中。您可能需要点击 解决方案资源管理器菜单中的“显示所有文件”。

enter image description here

第3步

使用带有以下配置的记事本创建.bowerrc文件,并将其保存在Visual Studio Project文件夹中

{
"directory": "scripts/bower_components",
"proxy":"http://proxy.myCompany.com:80",
"https-proxy":"http://proxy.myCompany.com:80"
}
  • 将此文件包含在Visual Studio项目中。
  • 编辑此文件以设置要下载的包的目录 亭子
  • 如果您在公司代理后面工作,请添加代理服务器设置。否则删除最后2行代理和https-proxy

enter image description here

第4步

要下载AngularJs,请执行命令

bower install angular –save

这将在bower.json中添加一行。

enter image description here

第5步

默认情况下,包将在bower_components目录下下载。 (或在.bowerrc文件中提到的目录下)

确保在Visual Studio项目中包含整个包目录。

  • 点击显示所有文件
  • 右键单击新下载的软件包,然后单击“包括在内” 项目”

enter image description here

enter image description here

第6步

最后将新包的引用添加到index.html

enter image description here

答案 1 :(得分:2)

我发现我还需要配置git才能使用代理服务器:

git config --global http.proxy http://username:password@proxyURL:8080

之后凉亭在VS 2015工作