Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bower replacement in Visual Studio 2017 ASP.NET MVC Core Template

Lately I created a ASP.NET MVC Core project from scratch using Visual Studio 2017 (15.6.3). I discovered the usual JavaScript frameworks:

  • bootstrap
  • jquery
  • jquery-validation
  • jquery-validation-unobtrusive

But unfortunately all Bower support is gone! There's no bower.json, no .bowerrc and no "Manage Bower Packages..." anymore:

enter image description here

What's wrong with Visual Studio's ASP.NET MVC Core template? Did Bower become obsolete?

Please don't duplicate this question to How to use bower packages in Visual Studio 2017 if Bower is deprecated! I don't like a fix pointing to deprecated technologies.

I'd like to narrow the question: What's the simplest (most intuitive) way to replace Bower by NPM? Like Bower did with its .bowerrc: { "directory": "wwwroot/lib" }?

like image 804
Marcel Avatar asked Mar 23 '18 09:03

Marcel


4 Answers

Bower is actually dead.

Microsoft have a lightweight and currently under the radar solution to this called Library Manager (LibMan).

It's a stripped down json based solution, with a very simple UI - that gives you control over which files to download (no more downloading hundreds of files when you just need 1).

Mads Kristensen did a great little intro to the preview at Build 2017. (the video should start at the correct place around 43 mins).

At the time of writing this it's still in preview - but due to be released with Visual Studio 15.8.

If you'd like to try it before that you can grab it from the GitHub Repo or Visual Studio Marketplace - instructions in the solution to this question

You can still use npm etc - though here are Microsoft's reasons for using this instead (or as well as) - from the Visual Studio Marketplace:

Reasons for using this extension

  • For apps not currently using another package manager
  • For projects where you think Bower and npm are overkill
  • For developers that don't want to use Bower or npm
  • For developers that values simplicity in their tools
  • For using custom or private packages/files
  • For ASP.NET Core apps where NuGet can't install content packages
like image 135
niico Avatar answered Oct 17 '22 07:10

niico


Bower is dead. The team of bower is refering to Yarn (an addition on NPM).

Since Visual Studio has some NPM support, I would go for it.

Create in the root of your project a package.json (Todo so, right click your project, add item and search for NPM. You will find a npm Configuration File):

{
  "name": "SomeName",
  "version": "1.0.0",
  "private": true,
  "dependencies": {
    "bootstrap": "3.3.7",
    "jquery": "3.3.1",
    "jquery-validation": "1.17.0",
    "jquery-validation-unobtrusive": "3.2.10",
    "jquery-ajax-unobtrusive": "3.2.4",
  }
}

Everytime you make changes to the json file, simple press CTRL + S. Visual Studio automaticly calls NPM and restores the packages. Also note, you have intellisence for the package names and version numbers.

After migrating myself, I can not remember to not find a package on npm. But if it's the case for you, note you can reference a github repository directly.

The depenencies are saved to node_modules folder. That's for the new package manager.

Now you have the problem you need to bundle it for release (which you should have done with bower too). Bundeling is the process of combining your Javascript/CSS/Image assets to a single bundle.js, bundle.css, sprite.svg. These should be copied to the wwwroot folder.

For doing so, we have a few options (I will only link to a few, since this would explode the scope of the question):

  • Webpack
  • Gulp
  • Grunt
like image 28
Christian Gollhardt Avatar answered Oct 17 '22 06:10

Christian Gollhardt


We found bower to be tricky to get setup, npm is well supported and packages can be installed using the Package Installer from Mads Kristensen, this also works well with the Bundler & Minifier extension, from the same developer for copying the relevant files from the node_modules folder to where you want them.

https://github.com/madskristensen/BundlerMinifier

https://marketplace.visualstudio.com/items?itemName=MadsKristensen.PackageInstaller

like image 36
Mark Redman Avatar answered Oct 17 '22 07:10

Mark Redman


I would suggest just sticking with npm and forget bower for asp.net core projects,i posted a way of using npm in the link below,

How to use yarn in ASP.Net core MVC to install bootstrap in wwwroot folder

like image 44
Tony_Kara Avatar answered Oct 17 '22 07:10

Tony_Kara