Create empty node.js project

Hello Glitch

Is there any way to create an empty project (no hello-express), because ususally the first 3-5 minutes I spend time completely removing all files withing the app folder and recreating the folder structure the way I am used to, which also can get annoying some times.

cd /; rm -rf app; cd app; npm init; mkdir src/; echo "# My App" > README.md; echo "// My App" > index.js
Cheers,
⌬ iHack

You could create that empty project yourself, then just remix it whenever you want a new project.

1 Like

We don’t start with a blank project for reasons explained here: https://medium.com/glitch/what-is-glitch-90cd75e40277. j-f’s suggestion is what we’d recommend, and what many others currently do.

1 Like