Install MoJ Frontend with npm
Requirements
To use MoJ Frontend with npm you must:
- Install the long-term support (LTS) version of Node.js, which includes npm. The minimum version of Node required is 4.2.0.
(We recommend using nvm
for managing versions of Node.)
-
Create a package.json file if you don’t already have one. You can create a default
package.json
file by runningnpm init
from the root of your application. -
Install jQuery, which is required by the MoJ Frontend JavaScript
npm install jquery --save
- If you want to use the MoJ Frontend Nunjucks macros, install Nunjucks - the minimum version required is 3.0.0.
npm install nunjucks --save
Installation
To install, run:
npm install --save @ministryofjustice/frontend
After you have installed MoJ Frontend the @ministryofjustice/frontend
package will appear in your node_modules
folder.
Importing styles
You need to import the MoJ Frontend styles into the main Sass file in your project. You should place the below code before your own Sass rules (or Sass imports) if you want to override MoJ Frontend with your own styles.
- To import all components, add the below to your Sass file:
@import "node_modules/@ministryofjustice/frontend/moj/all";
- To import an individual component (for example a button), add the below to your Sass file:
@import "node_modules/@ministryofjustice/frontend/moj/components/button/button";
Optional: Resolving SCSS import paths
If you wish to resolve the above @import
paths in your build (in order to avoid prefixing paths with node_modules
), you should add node_modules
to
your Sass include paths (in Ruby, they should be added to assets paths).
For example, if your project uses Gulp, you would add the Sass include paths to your Gulp configuration file (for example gulpfile.js
) with gulp-sass. Below is an example:
gulp.task('sass', function () {
return gulp.src('./sass/**/*.scss')
.pipe(sass({
includePaths: 'node_modules'
}))
.pipe(gulp.dest('./css'));
});
If you compile Sass to CSS in your project, your build tasks will already include something similar to the above task - in that case, you will just need
to include add includePaths
to it.
After resolving the import paths you can import MoJ Frontend by using:
@import "@ministryofjustice/frontend/moj/components/button/button";
Importing assets
In order to import MoJ Frontend images and fonts to your project, you should configure your application to reference or copy the relevant MoJ Frontend assets.
Follow either Recommended solution or Alternative solution.
Recommended solution
Make /node_modules/@ministryofjustice/frontend/moj/assets
available to your project by routing requests for your assets folder there.
For example, if your project uses express.js, below is a code sample you could add to your configuration:
app.use('/assets', express.static(path.join(__dirname, '/node_modules/@ministryofjustice/frontend/moj/assets')))
Alternative solution
Manually copy the images and fonts from /node_modules/@ministryofjustice/frontend/moj/assets
into a public facing directory in your project. Ideally copying the files to your project should be an automated task or part of your build pipeline to ensure that the MoJ Frontend assets stay up-to-date.
The default paths used for assets are assets/images
and assets/fonts
. If your asset folders follow this structure, you will not need to complete the following steps.
To use different asset paths, set $govuk-assets-path
, $govuk-images-path
and $govuk-fonts-path
in your project Sass file to point to the relevant directories in your project (this will override the defaults set in /node_modules/@ministryofjustice/frontend/moj/settings/_assets.scss
). Make sure you do this in Sass before importing @ministryofjustice/frontend
into your project - see Importing styles.
Example 1:
// Include images from /application/assets/images and fonts from /application/assets/fonts
$moj-assets-path: ‘/application/assets’;
@import “@ministryofjustice/frontend/moj/all”;
Example 2:
// Include images from /images/@ministryofjustice/frontend and fonts from /fonts
$moj-images-path: “/images/@ministryofjustice/frontend/moj/”;
$moj-fonts-path: “/fonts/”;
@import “@ministryofjustice/frontend/moj/all”;
Importing JavaScript
See Setting up JavaScript for information on how to install, configure and use JavaScript.
Include CSS and JavaScript
Add the CSS and JavaScript code to your HTML template:
<!DOCTYPE html>
<head>
<title>Example</title>
<link rel="stylesheet" href="assets/application.css">
</head>
<body>
<!-- Copy and paste component HTML-->
<button class="govuk-button">This is a button component</button>
<script src="assets/jquery.js"></script>
<script src="assets/application.js"></script>
</body>
</html>