Skip to content

cunguyen-agilityio/parcel-html-css

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTML/CSS with Parcel

Create and build a base app for HTML/CSS with Parcel. Parcel is a zero configuration build tool for the web. It combines a great out-of-the-box development experience with a scalable architecture that can take your project from just getting started to massive production application. View more about Parcel.

Author: Cu Nguyen <[email protected]>

Deploy to Netlify: https://parcel-html-css.cunguyen.com/

Targets

  • This help to guide those who are starting with HTML/CSS and has an overview of a base web structure
  • Quick start with HTML/CSS with a build tool that supports hot reload, minimizes the code, transfers JavaScript, JSX, and TypeScript

Requirements

  • Node >=8.4.0 / npm >=5.3.0
    • You can install via nvm
  • Yarn (Optional) >=1.22.4

File & folder structure

├── .gitignore
├── package.json
├── yarn.lock
├── README.md
└── src
    ├── favicon.ico
    └── assets
        ├── audios
        ├── videos
        └── images
    ├── pages
        ├── index.html
        └── 404.html
    ├── scripts
        └── index.js
    └── styles
        └── main.css

Getting Started

Step by step to run this app in your local

Install packages

At your directory root, run:

npm/yarn install

Run server

npm/yarn start

Build

npm/yarn run build

Some notes

  • You can update the source structures to follow your patterns.
  • Parcel v2 has supported the autoprefixer plugin without any config, in case you want to custom more oldest browsers, you can define it in the package.json (View document)
  • Live reload is supported on this repository
  • Web default port is http://localhost:1234, you can custom it

About

Create and build a base app for HTML/CSS with Parcel

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published