A blazing fast frontend development starter template, bundled using Parcel.
To get started instantly, you can one-click deploy to Netlify below (this also creates a copy of the repository in your own GitHub account), or you can click the "Use this Template" above.
Split your HTML pages into smaller, more manageable files with PostHTML's Include plugin for Parcel.
<!-- index.html -->
<html>
<head>
<title>index.html</title>
</head>
<body>
<include src="partials/header.html" locals='{
"title": "Hello World"
}'></include>
</body>
</html>
<!-- partials/header.html -->
<header>
<h1>{{ title }}</h1>
</header>
Use modern JavaScript syntax and features like ES6 imports without the need for additional configuration.
// index.js
import helloWorld from "./scripts/helloWorld";
helloWorld();
// scripts/helloWorld.js
const helloWorld = () => {
console.log("Hello world 👋");
};
export default helloWorld;
A plain ol' vanilla CSS stylesheet to get you started. Check out my Parcel HTML, SASS, and JavaScript starter template if you are interested in using the CSS pre-processor SASS. Or, have a look at the Parcel docs if you're interested in adding on another pre- or post-processor such as PostCSS, LESS, or Stylus.
Prerequisites: You'll need Node and NPM installed on your local computer.
Run
npm install
to install dependencies, then
npm start
to start the local development server.
To build for production, run
npm run build