I am trying to generate an express skeleton, using the express generator. So it would be this:
$ npm install express-generator -g
However, it adds a bunch of automatic jade files.
I was wondering if there was a way to get rid of those jade files and just using html with the express generator
Thanks!
npx express-generator someFolderName --no-view
– Iberia