https://github.com/evan-goode/mango-tango
🥠A minimal front-end boilerplate that uses Parcel
https://github.com/evan-goode/mango-tango
boilerplate-front-end parcel
Last synced: 11 months ago
JSON representation
🥠A minimal front-end boilerplate that uses Parcel
- Host: GitHub
- URL: https://github.com/evan-goode/mango-tango
- Owner: evan-goode
- Created: 2018-10-26T20:25:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T23:00:04.000Z (over 3 years ago)
- Last Synced: 2023-08-03T09:22:23.459Z (almost 3 years ago)
- Topics: boilerplate-front-end, parcel
- Language: HTML
- Homepage:
- Size: 650 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mango Tango
Mango Tango is a minimal front-end boilerplate that gets you set up with [Parcel](https://parceljs.org) as fast as possible.
## Getting started
Clone the repository.
```
git clone git@github.com:evan-goode/mango-tango.git # SSH
git clone https://github.com/evan-goode/mango-tango.git # HTTPS
cd mango-tango
```
Unless you're working on the boilerplate itself, you'll want to remove the existing .git directory.
```
rm -rf .git
```
Install dependencies and start the development server.
```
yarn
yarn start
```
The default entry point is `source/index.html`. Remember to set the page title in `source/index.html`, fill out `source/manifest.json`, and replace `source/images/icon.png` with your own.
## Building for production
```
yarn build
```
## See also
- [Parcel](https://parceljs.org)
- [Yarn](https://yarnpkg.com)
- [Babel](https://babeljs.io)