Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jadjoubran/web-starter-parcel

Web starter using Parcel for "Learn JavaScript"
https://github.com/jadjoubran/web-starter-parcel

Last synced: 27 days ago
JSON representation

Web starter using Parcel for "Learn JavaScript"

Awesome Lists containing this project

README

        

# Web Starter Parcel

Web starter using ParcelJS for learnjavascript.online

This boilerplate is provided at the end of the [Learn JavaScript](https://learnjavascript.online) course.

## Setup

**First time**

```bash
git clone https://github.com/jadjoubran/web-starter-parcel.git
cd web-starter-parcel
npm install
```

**Then you can run the server**

```bash
npm run serve
```

Browse to [localhost:1234](http://localhost:1234)

## Parcel

This starter uses parcel (v2) to bundle your scripts.

You can import other files. Make sure you have the correct path. You can also import libraries installed with NPM. We already included an example for you with **date-fns**. Feel free to remove it if you don't need it.

## Build for production

When you're ready to deploy, you can build for production with the following command:

```bash
npm run build
```