I have a very simple webpage that uses the lodash library. The reference is a relative path using the node_modules folder.
<script src="node_modules/lodash/lodash.min.js"></script>
I'm also using the http-server package to serve my webpage.
Is there a better way to reference lodash and any libraries I install through NPM besides the relative path through the node_modules folder?