An open API service indexing awesome lists of open source software.

https://github.com/jhsware/inferno-parcel-templates


https://github.com/jhsware/inferno-parcel-templates

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# Inferno with Parcel
Creating a new Inferno project takes 10 seconds using these zero config templates.

Learn more about [Inferno](https://www.infernojs.org/).

1. Clone this repos

2. Set up your project

3. Start coding

## inferno-parcel-template
Use this for simple projects.

```sh
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
```

## inferno-parcel-monorepos-template
Template for monorepo projects. Use this if you want to create component libraries or larger projects.

```sh
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
```

## Template Features

- [Inferno](https://www.infernojs.org/)
- Bundler: [Parcel](https://parceljs.org/)
- Testing: [Jest](https://jestjs.io/)