refactor
refactor

Reputation: 15104

Installing Jquery using Bower in Nodejs

When I use bower to install Jquery in my node project,the tree structure of files that get created is as depicted in below image[/bower_components/jquery].

enter image description here

I use .js files in "dist" folder to include in my ejs views.

But I do not know the purpose of "src" folder , when and where it should be used.

Upvotes: 0

Views: 56

Answers (1)

Joe Clay
Joe Clay

Reputation: 35847

src contains the library's source code. You only need it if you want to compile jQuery yourself.

Upvotes: 1

Related Questions