Reputation: 15104
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].
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
Reputation: 35847
src
contains the library's source code. You only need it if you want to compile jQuery yourself.
Upvotes: 1