I wrote a fun website for my friends to generate passwords, but now I want to implement Google Material Design into my site, and it looks like I need NPM to do this.
The problem arose because I started my site with just the website template, not the node.js one.
So how to I convert my normal website into a Node.js website on Glitch?
If you add a package.json to your project, Glitch will recognize it being a node.js application. You’ll need to specify the start script and the dependencies of your project in package.json, then write a backend to serve files, etc. I am assuming you’re familiar with node.js development