This is our boilerplate, setup in a way that fits our needs and hopefully that of others.
When we started developing, we ran into a lot of moments where we wished we could have a tooling setup that would make life easier.
This boilerplate does the following things;
- uses an
.envfile - PostCSS support
- Implement Critical CSS
- .ejs support
- Hot reloading support for .ejs and .css files. (This was a big painpoint for us)
- Implements babel to compile new Javascript features (such as Async Await) to support IE 10+ browsers
- Bundles and generates sourcemaps for .js files while developing
- Implements ESLint for .js linting, stylelint for .css linting and EJSLint for useful .ejs error messages.
- Attempts to fix small linting issues on its own, such as indentation, based on your settings.
- Copies files such as fonts and images from the
srcfolder to thepublicfolder. - Minifies all the .js and .css files on building
- Groups media query selectors on build
- Adds a command to easily add a component
After cloning the repository, head to the folder and run:
yarn installFirst of all, you need an .env file. We included a command that will generate an empty .env file for you in the config/ folder.
The command is
yarn run build:envYou need to configure the .env file, otherwise the server won't have a port to run your project on. You can copy this code example and paste it in the .env file found at config/.env.
NODE_ENV=development
PORT=8004
DEV_PORT=8000Where NODE_ENV is the environment you are in (development or production)
PORT the port your application will run on DEV_PORT the port you will develop on.
Please note that the DEV_PORT is the number that you will have to add after the localhost: url.
To start developing, run the command:
yarn run devThis will start a development server at localhost:8000
We have a command that will generate a folder with the files needed for a component:
yarn component nameWhere name is the name you want to give the component. Use dashes(-) in stead of spaces.
To build your project, run the command:
yarn run buildIn this setup we use sqip to generate low res svg's that can be used as placeholders. In the same time lazyloading will (lazy) load the correct file and swap them out.
To generate the placeholders you can run the build command or directly run:
yarn run build:sqipTo set up the HTML correctly use the following:
<img class="lazy" data-src="/images/FHD.jpg" src="/images/FHD.svg" alt="">