Royal Navy Design System
Build web applications that meet the Royal Navy service standards.
Visit the Roadmap board to view the high-level objectives for the Royal Navy Design System. To check on issues currently being completed, view our Tactical board instead.
All packages are published to the NPM registry and we adhere to semantic versioning.
The following view layer libraries are currently supported:
- React
Please refer to Storybook to see interactive examples, code snippets and details on how best to consume each of the components.
To install and save to your project's package.json dependencies, run:
# with npm
npm install @royalnavy/fonts @royalnavy/react-component-library styled-components
# ...or with pnpm
pnpm add @royalnavy/fonts @royalnavy/react-component-library styled-components
Note
styled-components
is a required peer dependency and is installed with the above command.
Here's a quick example application to get you started:
import React from 'react'
import { createRoot } from 'react-dom/client';
import '@royalnavy/fonts'
import { GlobalStyleProvider, Button } from '@royalnavy/react-component-library'
const rootElement = document.getElementById('root');
const root = createRoot(rootElement);
function App() {
return (
<GlobalStyleProvider>
<Button variant="primary">
Hello, World!
</Button>
</GlobalStyleProvider>
)
}
root.render(<App />)
Splitting up large codebases into separate independently versioned packages is extremely useful for code sharing. However, making changes across many repositories is messy and difficult to track, and testing across repositories gets complicated really fast.
To solve these (and many other) problems, some projects will organize their codebases into multi-package repositories (sometimes called monorepos).
Each package folder has it's own npm package.json and can act like a stand alone project. Pnpm workspaces detects dependencies that are held within the monorepo and creates a link between them, so you can work on a react component and see instant updates in Storybook.
Manage dependencies for packages like normal, but remember to use pnpm add
instead of npm install
.
You'll need Git and Node.js installed to get this project running.
Note
You will need the active LTS (Long-term support) Node.js version for this project (as specified in .nvmrc).
If you're an external contributor make sure to fork this project first.
git clone git@github.com:Royal-Navy/design-system.git # or clone your own fork
cd design-system
If you work across multiple Node.js projects there's a good chance they require different Node.js and npm versions.
To enable this we use nvm (Node Version Manager) to switch between versions easily.
- Install nvm
- Run
nvm install
in the project directory (this will use .nvmrc)
The top level project contains scripts that are then executed for all packages:
lint
checks syntax and simple errors in javascript filestest
runs Jest tests in all the packagesbuild
runs the build script in all packages
Git commit hooks trigger linting of all staged files when a change is committed.
We have configured a set of Prettier options to enforce consistent code formatting.
The Royal Navy Design System currently supports all major evergreen browsers.
The Royal-Navy/design-system is licensed under the Apache License 2.0.
Read the Contributing Guidelines.
We use Chromatic for visual regression testing.