The NJ Web Design Standards are an extension of the US Web Design Standards with a specific theme and components for State of New Jersey digital properties and services.
Follow the instructions on the USWDS Documentation - Installation page starting at "Install using Node and npm." The key difference between these instructions and what you will need to do is that our package name is @newjersey/njwds
instead of @uswds/uswds
. Therefore, on Step 4, your installation commmand would be:
npm install @newjersey/njwds --save
Once installed, the NJWDS package name would affect the file path used in node_modules
as well (i.e. node_modules/@newjersey/njwds/dist/
instead of node_modules/@uswds/uswds/dist/
).
- On our Github Releases page, on the latest release (at the top of the list), you will see an "Assets" section at the bottom of the release information. Click on the "Source codede (zip)" link to download our package.
- Follow the instructions on the USWDS Documentation - Installation page, starting with Step 2 of "Install the package directly from GitHub." Note that in our case, you would want to replace the
uswds
folder name withnjwds
.
Follow the instructions on the USWDS Documentation - Using USWDS page. Note that instead of uswds.css
or uswds.min.css
, you will refer to styles.css
in the /dist/css
directory. Also, the filepath should have njwds
instead of uswds
(i.e. assets/njwds/dist/js/uswds.min.js
instead of assets/uswds/dist/js/uswds.min.js
).
For a full list of examples of NJWDS components and their corresponding code, see our NJWDS Component Gallery. Note that because the NJWDS is built on top of the USWDS, you can use USWDS components and utilities not listed in our docs.
The NJWDS package also includes pre-compiled files in the src/
directory. Specifically, we add custom styles to USWDS on _uswds-theme-custom-styles.scss
and custom theme on _uswds-theme.scss
. Follow the instructions on the USWDS Documentation - Compiling SASS into CSS page to compile your own CSS using SASS.
- Clone this repository
- Run
npm install
- [Optional] Run
npm run import-components
to important new USWDS components. This only needs to be done if new upstream components are developed
This imports the USWDS, pulls in the NJ-specific components and styles, and saves them in a dist
directory.
- Run
npm run build-docs
to general a Fractal component gallery for reviewing the style guide
- Run
npm start
to build the component library, launch a web server to host it, and live reload on development changes.
- Run
npm run deploy
This builds USWDS styles, builds the Fractal docs, and then deploys them to the gh-pages branch.
Note: do not push directly to the gh-pages branch.