https://github.com/christopherwk210/generator-parcel
Parcel based web app generator where everything just works
https://github.com/christopherwk210/generator-parcel
parcel sass typescript yeoman
Last synced: about 2 months ago
JSON representation
Parcel based web app generator where everything just works
- Host: GitHub
- URL: https://github.com/christopherwk210/generator-parcel
- Owner: christopherwk210
- License: mit
- Created: 2018-05-08T16:01:11.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-06T17:02:25.000Z (over 7 years ago)
- Last Synced: 2025-02-10T09:32:14.559Z (over 1 year ago)
- Topics: parcel, sass, typescript, yeoman
- Language: JavaScript
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# generator-parcel [](https://badge.fury.io/js/generator-parcel)
> Parcel based web app where everything just works
The goal of this generator is to provide a quick way to scaffold an organized front-end project using the latest technologies, powered by Parcel for an easy zero configuration setup. It has optional TypeScript and Sass support, and comes with babel and postcss with autoprefixer installed and setup.
## Quick Start
Install Yeoman first, then the generator:
```
npm i -g yo
npm i -g generator-parcel
```
Generate your project:
```
yo parcel
```
Run it:
```
npm start
```
Your project will be available locally at [http://localhost:1234](http://localhost:1234)
## Sample output
Here's an example of what the project structure might look like after generation:
```
.
├── .babelrc
├── .gitignore
├── .postcssrc
├── .yo-rc.json
├── package-lock.json
├── package.json
├── node_modules
└── src
├── assets
│ ├── scripts
│ │ ├── app.ts
│ │ └── index.ts
│ └── styles
│ └── index.scss
└── index.html
```
## License
MIT © [Chris Anselmo](https://chrisanselmo.com/)