+ 5
I have installed jQuery using npm on my system (Win 10 Pro x32). What does it mean?
4 Respuestas
+ 6
Linux ????? IDK It Sounds like linux
+ 4
that's mean that jQuery files in node_modules folder in your project
+ 3
I have updated my question to win 10 @Terminator
+ 1
if you installed jquery locally then you can require it and use it within the project folder l.
var jquery = require("jquery");
if you installed it globally ( with -g flag) then you can require anywhere you want (obviously in a node project)