Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 828 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 828 Bytes

Parcreate

npm License

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

Current list of templates:

  • basic
  • tailwind
  • react

Help text:

$ 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