JavaScript in Kickoff

Kickoff has a very simple base JavaScript structure. We appreciate that everyone has a preferred way of writing and structuring their JavaScript and so we have made it easy to get up and running, while also making it easy to switch out Kickoff’s JavaScript structure should you want to do something more complex.

JavaScript structure

As mentioned above, Kickoff’s JavaScript is very non prescriptive. Here we look at how we structure Kickoff’s JavaScript by default as well as how this can be adapted for your own needs.


script.js

This file can be used to contain or reference your site/app JavaScript code.


Folder structure

Kickoff has a very simple folder structure for it’s JavaScript; as a base Kickoff contains utils, standalone and a modules directories.

assets/src/js/modules

This directory is where you ought to put all your local, non-npm modules.

assets/src/js/utils

This directory is where you ought to put all your local utility scripts. These are the simple, single-serving scripts that are shared by more than one module.

assets/src/js/standalone

Any script/file in this directory will be copied, without modification, to the assets/dist/js/standalone directory. As an example, we added our Modernizr.js file here

For more information on how Kickoff uses 3rd party libraries, checkout the documentation below.


webpack

lets you import (ES2015) or require('modules') (ES5) in the browser by bundling up all of your dependencies. It also gives you access to thousands of already created modules via , that can be added by simply requiring them within your JavaScript.

Kickoff uses webpack to bundle its JavaScript. By default, only script.js is compiled, but if you need to split your code and provide another entry point, you need to create the new source file in the /assets/src/js directory and then edit the entryPoints object in .

entryPoints: {
	kickoff: [`${this.srcDir}/js/script.js`], // generates /assets/dist/kickoff.js
	styleguide: [`${this.srcDir}/js/styleguide.js`], // generates /assets/dist/styleguide.js

	// Create more entry-points by adding to this array, e.g.
	foo: [`${this.srcDir}/js/foo.js`], // generates /assets/dist/foo.js
},

ES2015 & Babel

Kickoff uses the webpack Babel loader to allow you to write ES2015 in your projects. This will automatically compile your ES2015 code back into ES5 syntax so that older browsers can understand it.

The main benefit of this is that you can learn to use the latest JavaScript syntax without having to wait for browsers to implement those features. The compilcation step will take care of this for you.

To learn more about Babel, .


npm

Kickoff uses NPM to include & manage any 3rd party dependencies that you might need for your site. A few npm packages are included with Kickoff by default, these can be found by viewing the manifest file, , and installed by running:

npm install

Default npm dependencies

  • - [javascript] Developed by Nic Bell, this is our version of DOMready that is a little bit smarter than the rest
  • - [javascript] Drop-in replacement for console - a cross-environment fix for missing methods
  • - [javascript] Use external SVG spritemaps today
  • - [javascript] A JS console welcome message for the Kickoff framework
  • - [sass] Simple fluid-width videos using only CSS
  • - [sass] Sass utility functions and mixins for the Kickoff framework
  • - [sass] Kickoff’s Grid System
  • - [sass] A modern, HTML5-ready alternative to CSS resets based on
  • - [javascript] Simple copy to clipboard. Only used on the styleguide

These packages aren’t hard dependencies and can be removed by removing them from the package.json before your install your dependencies. The sass dependencies are all used in the framework, be careful when removing them.

If you need to add any 3rd party library code, we suggest that you install it from . or however, both have a better search than npm so it might be easier to find them on there. There are thousands of packages on npm, here are a few that we find particularly useful:

  • - Promise based HTTP client npm i axios -S. 👍
  • - A JavaScript utility library delivering consistency, modularity, performance, & extras npm i lodash -S
  • - Event delegation in javascript npm i gator -S
  • - forEach over DOM elements more easily npm i double-dollar -S
  • - A window.fetch polyfill. npm i whatwg-fetch -S
  • - High performance (jankfree) lazy loader for images (including responsive images), iframes and scripts (widgets) npm i lazysizes -S
  • - measures element size npm i get-size -S
  • - Throttle/debounce your functions npm i throttle-debounce -S
  • - Watch some media queries and react when they change npm i responsive-watch -S
  • - Attaches JavaScript to HTML without messy selectors npm i attach.js -S
  • - Kickoff validation plugin for forms. Uses HTML 5 form attributes to trigger validation tests npm i daccord-validation -S
  • - Lean DOM Manipulation and a great alternative to jQuery at a fraction of the size npm i dominus -S
  • - Developed by Scott Hamper, Cookies is a great Cookie manipulation library npm i cookies-js -S
  • - A lightweight and simple to use pub-sub library. npm i bullet-pubsub -S
  • - Youtube video player class npm i utube -S
  • - Parse, validate, manipulate, and display dates npm i moment -S
  • - A function that animates an element’s scrollTop/scrollLeft values npm i scroll -S
  • - Flickity carousel - Touch, responsive, flickable galleries npm i flickity -S
  • - Developed by Ivan Hayes, SwiftClick is a library created to eliminate the 300ms click event delay on touch devices. npm i swiftclick -S
  • - Developed by Zander Martineau, trak.js is a universal analytics event tracking API npm i trak.js -S
  • - Write a functional switch statement. npm i switch-fn -S
  • - grab bag of easing equations npm i eases -S
  • - Simple library for handling keyboard shortcuts npm i mousetrap -S
  • - A node.js package for Steven Levithan’s excellent dateFormat() function. npm i dateformat -S
  • - A fast, small, and feature-rich JavaScript library
  • - Cross-browser directory and multi-file upload library npm i uppie -S

Shims & polyfills

From version 7, Kickoff uses the service to dynamically add any polyfills that a browser should need. Read the ‘Feature detection’ section of to discover better ways to test for polyfills.


Modernizr

Modernizr is included with Kickoff if you need support for non-flexbox supporting browsers. You may wish to create your own and replace the included version. The Modernizr file is included in the standalone directory, find out more about it above.

Where next?