I have installed jquery with npm (npm install jquery --save) and it added jquery to my node_modules folder. What path do I use for the script tag on the html page?
Here is what my directory structure looks like (only included what is necessary)
-Project Root
-node_modules
-jquery
-dist
-jquery.js
-src
-index.js
-index.html
-package.json
For socket.io it looks like this
<script src="/socket.io/socket.io.js"></script>
I tried this for jquery but it didn't work
<script src="/jquery/dist/jquery.js"></script>
Any help will be greatly appreciated! Thanks!