https://github.com/jhsware/inferno-parcel-templates
https://github.com/jhsware/inferno-parcel-templates
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jhsware/inferno-parcel-templates
- Owner: jhsware
- Created: 2022-11-25T10:25:44.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-25T11:07:33.000Z (over 3 years ago)
- Last Synced: 2025-02-25T08:43:05.846Z (over 1 year ago)
- Language: TypeScript
- Size: 155 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)