Creating a new Inferno project takes 10 seconds using these zero config templates.
Learn more about Inferno.
-
Clone this repos
-
Set up your project
-
Start coding
Use this for simple projects.
git clone git@github.com:jhsware/inferno-parcel-templates.git
cp -r inferno-parcel-templates/inferno-parcel-template ./my-project
cd ./my-project
git init && git add --all && git commit -m "initial commit"
npm i && npm run dev
Template for monorepo projects. Use this if you want to create component libraries or larger projects.
git clone git@github.com:jhsware/inferno-parcel-templates.git
cp -r inferno-parcel-templates/inferno-parcel-monorepos-template ./my-project
cd ./my-project
git init && git add --all && git commit -m "initial commit"
npm i && npm run dev