I downloaded the Angular project angular-seed, and was using the node web-server.js file they provided to run my code.
I already built out enough functionality that it would be non-trivial to switch to another project and re-do the URL handling already managed in web-server.js.
I want to add socket.io to my stack. However, the way socket.io is (by default) added to the client stack is a line that looks like this:
<script src="/socket.io/socket.io.js"></script>
Because of the web-server.js URL rewrites, this doesn't work. What do I do?
I already have installed node.js, npm, and socket.io