We at Me & Company are using this boilerplate project to set up our web projects. It unifies the structure of each project and simplifies the start of development.
Essentially, it provides the folder structure and some basic files for SASS and JavaScript. It has a builder included with various tasks, which add value to each project and improve the quality without any major effort. We implemented some features, at this stage especially for the work with SASS. It is adaptable for other frameworks, but can also be used as an independent HTML framework.
npm install
brew install libpng
gulp dev
and you are ready to goThere is a basic index.html
file, where you can import template snippets via Gulp File Include e.g.:
<html>
@@include('./src/html/snippets/header.html');
...
</html>
With gulp include
the html files get build and gulp html
minifies them into the dist folder.
We have variables for most attributes in CSS, which are individual for each project and design related.
There are several mixins and functions to simplify and unify common used declarations like font-sizes, colors, breakpoints and spacing.
@include font-size(base)
@include font-size(base, sm, false)
color: color(base)
@include breakpoint(md)
@include breakpoint(920px)
padding-top: spacing(m)
, for text-spacing: padding-bottom: text-spacing(l)
We implemented a sass generated grid. You are able to choose your preferred grid type (flex
, float
, inlineblock
, CSS Grids coming soon), the amount of columns and the spacing between columns. The generated grid classes are mostly named like bootstrap, e.g.:
col-6
, col-lg-6
, col-md-6
, col-sm-6
, col-xs-6
col-offset-6
, col-lg-offset-6
, col-md-offset-6
, col-sm-offset-6
, col-xs-offset-6
We are using a customized approach of Atomic Design. We decided to call molecules 'elements' and organisms 'modules'. Semantically they are pretty much the same.
Have a look at our template file for a suggested structure of attribute declarations and examples of usage.
Instead of creating a variation of an element or atom class for unique styling cases we are using helper classes.
.mt-1
, .mb-1
, .n-mt-1
, .mt-md-1
, .pt-1
, ...
.font-lg-base
, .font-bold
, .text-uppercase
, ...
To improve code quality and consistency we follow the Airbnb Javascript Style Guide. We use ESLint with the Airbnb config to comply with the style guide (ESLint config). To enable linting, check the preferences of your editor.
Our basic approach is to get as close as possible to Object Oriented Programming with JavaScript. For each module, create a class which implements the needed functionality. The Class Template defines a basic structure. The class constructor expects a Node Object as element. Optionally, further parameters can be provided.
This is the main script from where all functions should be called and all classes should be created. Use the factory functions to create instances of your classes. See main.js how to use them.
We are using inline SVG-Icons. The build process gulp images
optimizes the SVGs using SVGO, builds them into a PHP file and as .svg-files to the image folder. From there you can either import them by using the PHP variables or using the built-in Gulp File Include module.
@@include(dist/img/icons/icon-atom.svg)
inline import for PHP e.g.:
<?php require 'icons.php'; ?>
<span class="icon"><?php echo $icon_atom; ?></span>
gulp dev
- used in development environment
gulp build
- used for production environment
We'd like to hear your opinion, any comments or suggestions to make it even better.
Built with <3 by Me & Company