GOV.UK look and feel as a single easy import (at least that's the goal).
To use look-and-feel first add it to your package.json
:
yarn add @hmcts/look-and-feel
Then configure it in your app.js
:
const express = require('express');
const app = express();
...
const lookAndFeel = require('@hmcts/look-and-feel');
lookAndFeel.configure(app);
...
All documentation is stored in the [docs] folder.
Run tests:
yarn test
Run Eslint:
yarn lint
Check for Vulnerabilities:
yarn audit