How to use Bower (installed from nuget) in Visual Studio?

柔情痞子 提交于 2019-12-17 23:16:43

问题


I am trying to use bower inside Visual Studio 2013.

First I installed bower (not bower.js) via nuget's Package Manager Console.

Then I thought I could simply type

PM> bower init

inside the PMC to generate the bower.json.

But then it gave me this error.

bower : The term 'bower' is not recognized...

PS. The path of the PM> is pointing to C:\MyWebProject\MyWebProject\.bin.

What am I missing here??


回答1:


  1. Open the command prompt
  2. Navigate to web project folder
  3. Run bower init
  4. You should have bower.json created by answering all answers on the cmd prompt.



回答2:


Srinivas accurately described the steps needed to get you started with a bower.json in your root folder, which is where you want to start. You now have two main tasks:

  1. Define dependencies - use Package Intellisense.
  2. Install dependencies - use Grunt Launcher. They will be installed to the bower_components folder.
  3. Reference dependencies - simply add them to you project (as links).

For more information see Introducing Gulp, Grunt, Bower, and npm support for Visual Studio.

Note that Visual Studio 2015 (currently in preview) has built-in, first-class support for all of the above: Manage Client-Side Web Development in Visual Studio 2015, Using Grunt and Bower.



来源:https://stackoverflow.com/questions/26521889/how-to-use-bower-installed-from-nuget-in-visual-studio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!