Installing with npm

The recommended way to use the Hackney design system is to install it with npm.

Before you follow these steps, take a look at our starter kits to see if there's a pre-made example for your framework.

Prerequisites#

You need Node.js and npm installed.

If your project isn't already using npm, you'll need to run npm init to generate a package.json file.

Installation#

To install, run:

npm install lbh-frontend

When it completes, you should see lbh-frontend in your node_modules folder.

govuk-frontend will also be automatically installed.

Importing styles#

You need to import the design system's styles into your project's main Sass file.

If you need to override the way components look, put these imports above your own code.

To import all components, add:

@import "node_modules/lbh-frontend/lbh/all";

Import individual components (optional)#

If you are only using a small number of components, or want to experiment with shrinking your production CSS files, you can import components one-by-one.

For example, importing the button might look like:

@import "node_modules/lbh-frontend/lbh/base";
@import "node_modules/lbh-frontend/lbh/core/all";
@import "node_modules/lbh-frontend/lbh/objects/all";
// Import your components here
@import "node_modules/lbh-frontend/lbh/components/lbh-button/button";
@import "node_modules/lbh-frontend/lbh/utilities/all";
@import "node_modules/lbh-frontend/lbh/overrides/all";

You can remove imports you don't need.

Staff-facing components#

Some components are intended for staff use only.

In some situations you might want to import all the components, excluding the staff-specific ones:

@import "node_modules/lbh-frontend/lbh/base";
@import "node_modules/lbh-frontend/lbh/core/all";
@import "node_modules/lbh-frontend/lbh/objects/all";
@import "node_modules/lbh-frontend/lbh/components/residents";
@import "node_modules/lbh-frontend/lbh/utilities/all";
@import "node_modules/lbh-frontend/lbh/overrides/all";

Resolve import paths (optional)#

If you want to be able to write cleaner imports, you can add node_modules to your Sass include paths.

If you're using the Sass CLI, use the --load-paths option.

In Rails, you'll need to add node_modules to your asset paths.

Frameworks like Next.js have their own way of doing this.

This lets you write imports like:

@import "lbh-frontend/lbh/components/button/button";

Global styles#

By default, the design system avoids applying styles directly to elements like the HTML body, heading and paragraph tags. Instead, you need to apply classes.

This is useful if you want to avoid conflicts with other styles in your app.

To change this behaviour, set $lbh-global-styles to true before you import the design system styles:

$lbh-global-styles: true;
@import "lbh-frontend/lbh/all";

One exception to this rule is the lobotomised owl selector, which we use to ensure sensible default spacing between components. It's easily overridden if you need.

Using JavaScript#

Some components include JavaScript to improve their usability and accessibility.

For example, the JavaScript will:

  • allow links styled as buttons to be triggered with the space bar, like native buttons
  • inform screen readers whether the details component is expanded or collapsed
note

Our JavaScript includes polyfills that stabilise how components behave with assistive technology and older browsers. You should always import and init a component's JavaScript, even if you're not sure how it's helping.

Import JavaScript#

If you're using a modern build tool like Parcel or Webpack, use the import syntax to import all components. To initialise them, use the initAll function:

import { initAll } from "lbh-frontend"
initAll()

initAll() must be called after the HTML has been rendered to the page. If you're using React, there are some extra things you need to do.

Initialise individual components (optional)#

If you're only using a small number of components, or adding and removing them after the page has loaded, you may want to initialise them individually.

LBH Frontend components with JavaScript behaviour have a data-module attribute set in their markup. You can use this to initialise them manually:

import { Radios } from "lbh-frontend"
const radio = document.querySelector('[data-module="govuk-radios"]')
if (radio) {
new Radios(radio).init()
}

If you're using React, use a ref instead.

Importing assets#

Your app needs to include our images and fonts.

$lbh-assets-path should be set to the publicly accessible path of the assets. By default, it's /assets.

If you're running your Sass through a bundler like Parcel or Webpack, you can set it to a location inside node_modules, and the assets will be copied over into your production build. One of these values normally works:

$lbh-asset-path: "~lbh-frontend/lbh/assets";
$lbh-asset-path: "node_modules/lbh-frontend/lbh/assets";

Create React App requires the first syntax, but some frameworks will prefer the second. Check our starter kits for examples.

If you're not using a bundler, you'll need to take extra steps:

1. By reference (recommended)#

Make /node_modules/lbh-frontend/lbh/assets available to your project by routing requests for your assets folder there.

For example, if your project uses express.js, this might look like:

app.use(
"/assets",
express.static(path.join(__dirname, "/node_modules/lbh-frontend/lbh/assets"))
)

2. Copying assets#

Manually copy the entire /node_modules/lbh-frontend/lbh/assets folder into a public facing directory in your project.

You should make this part of your automatic build process so it stays up to date.

Then, set $lbh-assets-path in your project Sass file to point to the right path.