⚠️ This repository is no longer actively maintained.
Jekyll Starter Kit is a boilerplate with configurable tools for static site development. These tools provide synchronized cross-device testing with a focus on performance. This is a good starting point for developers who want to build a Jekyll site with npm-based (npm run-scripts) tooling.
This project was inspired by Google's Web Starter Kit and achieves most of the same functionality (noted below)
Feature | Summary |
---|---|
Line Critical CSS | Inlining critical “above-the-fold” CSS ensures users can begin interacting with the page faster. I used this Critical by Addy Osmani |
CSS Loaded Asynchronously | I used loadCSS to asynchronously load all of my CSS and prevent blocking CSS behavior |
Sass support | Compile Sass into CSS with ease, bringing support for variables, mixins and more. (Add your assets to the src directory and run npm start to build) |
Performance optimization | We minify and concatenate JavaScript, CSS, HTML and images to be respectful of our users bandwidths. (Run npm run start to create an optimised version of your project to /dist ) |
Code Linting | JavaScript code linting is done using ESLint - a pluggable linter tool for identifying and reporting on patterns in JavaScript. Web Starter Kit uses ESLint with eslint-config-google, which tries to follow the Google JavaScript style guide. |
Built-in HTTP Server | A built-in server for previewing your site locally while you develop and iterate |
Live Browser Reloading | Reload the browser in real-time anytime an edit is made without the need for an extension. (Run npm run start and edit your files) |
Cross-device Synchronization | Synchronize clicks, scrolls, forms and live-reload across multiple devices as you edit your project. Powered by BrowserSync. (Run npm run start and open up the IP provided on other devices on your network) |
PageSpeed Insights | Web performance metrics showing how well your site performs on mobile and desktop (Run npm run pagespeed ) |
Accessibility | Runs a web accessibility audit during the build process. Powered by the Chrome Accessibility Tools (Run npm run accessibility ) |
Download the kit or clone this repository and run npm install
. Run npm run start
to build on what is included in the src
directory and start the server.
Bring up a terminal and type node --version
.
Node should respond with a version at or above 0.10.x.
If you require Node, go to nodejs.org and click on the big green Install button.
Once you have verified that your system can run JSK, check out the commands available to get started.
Jekyll Starter Kit strives to give you a high performance starting point out of the box. By default, your project will have a 99/100 on PageSpeed insights. You will need to add caching on your server (8 days recommended) to bring it to 100/100.
Check out our Web Page Test score for the default template. Visit the Speed Index for more info on page tests.
JSK has autoprefixer using the last three versions of the following browsers:
Visit the Browser List for more information
If you find yourself running into issues during installation or running the tools, please open an issue. I would be happy to discuss how they can be solved.
Contributions, questions and comments are all welcome and encouraged. For code contributions to Jekyll Starter Kit, please see the submit a pull request. There is no formal process established currently, so just fork and submit your code!
Apache 2.0
Copyright 2016 Tony Jones