Npm has the crazy thing that when you type npm create (or init) <generator-name> <package-name> it'll look for a project called create-generator-name on npm and if it is there it will use that to generate the project.
Check out https://www.npmjs.com/package/create-from-github - that's mine. I use it daily because the projects I normally work with are just too complex to figure out the configuration every single time.
Npm has the crazy thing that when you type
npm create (or init) <generator-name> <package-name>it'll look for a project calledcreate-generator-nameon npm and if it is there it will use that to generate the project.Check out https://www.npmjs.com/package/create-from-github - that's mine. I use it daily because the projects I normally work with are just too complex to figure out the configuration every single time.