generator-parcel
v0.1.2
Published
Parcel based web app where everything just works
Maintainers
Readme
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-parcelGenerate your project:
yo parcelRun it:
npm startYour project will be available locally at 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.htmlLicense
MIT © Chris Anselmo
