Skip to content

DEFRA/hapi-web-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Maintainability Test Coverage Greenkeeper badge

(Enter service name)

(Description of the service)

Environment variables

(Be sure to describe any environment variables here by maintaining a list like this)

name description required default valid notes
NODE_ENV Node environment no development,test,production
PORT Port number no 3000

Prerequisites

Node v8+

(Checklist)

Once you clone this repository you'll need to make a few changes before you're ready to start:

  • Add service name and description to the README above
  • Check over the content of the 404 and 500 error pages and tailor to suit
  • Update the package.json with the name, description and any git urls and authors etc.
  • Update the views context data to include the correct service and default page title
  • Remove the .git folder in the root directory. This will cut the cord to this boilerplate repo.
  • Update the build status badges to your new project

Running the application

First build the application using:

$ npm run build

Currently this will just build the govuk-frontend sass but may be extended to include other build tasks as needed (e.g. client-side js using browserify or webpack etc.)

Now the application is ready to run:

$ node index.js

(You can delete the remainder of this readme once you're up and running)

What is this?

A simple hapi-based enterprise ready govuk web application boilerplate. Click here for a similar api boilerplate hapi project.

Based on:

Getting started

Clone this repo and run through the checklist above.

Check the server is running by pointing your browser to http://localhost:3000

Project structure

Here's the default structure for your project files.

  • bin (build tasks)
  • client (client js/sass code)
  • server
    • plugins
    • public (This folder is publicly served)
      • static (Put all static assets in here)
      • build (This contains the build output files (js/css etc.) and is not checked-in)
    • routes
    • views
    • config.js
    • index.js (Exports a function that creates a server)
  • test
  • README.md
  • index.js (startup server)

Config

The configuration file for the server is found at server/config.js. This is where to put any config and all config should be read from the environment. The final config object should be validated using joi and the application should not start otherwise.

A table of environment variables should be maintained in this README.

Plugins

hapi has a powerful plugin system and all server code should be loaded in a plugin.

Plugins live in the server/plugins directory.

Logging

The good and good-console plugins are included and configured in server/plugins/logging

The logging plugin is only registered in when NODE_ENV=development.

Error logging for production should use errbit.

Views

The vison plugin is used for template rendering support.

The template engine used in nunjucks inline with the GDS Design System with support for view caching, layouts, partials and helpers.

Static files

The Inert plugin is used for static file and directory handling in hapi.js. Put all static assets in server/public/static.

Any build output should write to server/public/build. This path is in the .gitignore and is therefore not checked into source control.

Routes

Incoming requests are handled by the server via routes. Each route describes an HTTP endpoint with a path, method, and other properties.

Routes are found in the server/routes directory and loaded using the server/plugins/router.js plugin.

Hapi supports registering routes individually or in a batch. Each route file can therefore export a single route object or an array of route objects.

A single route looks like this:

{
  method: 'GET',
  path: '/hello-world',
  options: {
    handler: (request, h) => {
      return 'hello world'
    }
  }
}

There are lots of route options, here's the documentation on hapi routes

Tasks

Build tasks are created using simple shell scripts or node.js programs. The default ones are found in the bin directory.

The task runner is simply npm using npm-scripts.

We chose to use this for simplicity but there's nothing to stop you adding gulp, grunt or another task runner if you prefer.

The predefined tasks are:

  • npm run build (Runs all build sub-tasks)
  • npm run build:css (Builds the client-side sass)
  • npm run lint (Runs the lint task using standard.js)
  • npm run unit-test (Runs the lab tests in the /test folder)
  • npm test (Runs the lint task then the unit-tests)

Resources

For more information around using npm-scripts as a build tool:

Testing

lab and code are used for unit testing.

See the /test folder for more information.

Linting

standard.js is used to lint both the server-side and client-side javascript code.

It's defined as a build task and can be run using npm run lint.