Super simple project bootstrapping with Parcel Bundler.
npx parcreate example
# Or with a template:
npx parcreate example --template tailwind
# If you don't have npm>5.2.0
# this method is not reccommended as you have to manually
# make sure you're using the latest version everytime
npm i -g parcreate
parcreate example --template react
basic
tailwind
react
$ parcreate <dir> [options]
Options
-t, --template Choose a template for your app (defaults to basic)
Examples
$ parcreate my-app
$ parcreate my-react-app --template react
$ parcreate . --template tailwind