Analytics.usa.gov is a product of the Digital Analytics Program (DAP), which collects and publishes website analytics from thousands of public-facing US federal government websites per the "Delivering a Digital-First Public Experience" requirement.
Ths app uses Jekyll to build the site, and Sass for CSS. Javascript provided is a webpacked aggregation of several different modules, leveraging d3 for the visualizations. Learn more on the webpack configuration
This is the main repository for https://analytics.usa.gov. Additional repositories are:
- https://github.com/18f/analytics-reporter
- https://github.com/18f/analytics-reporter-api
Install ruby and node libraries before attempting to run other development commands:
# Install dependencies
bundle install
npm install
Linters run on the static files for the repo and ensure that the code is free from syntax issues and that code style conforms to community best practices. These checks are also enforced in CI. Run the linters with the following commands:
# JavaScript
npm run lint:js
# SCSS
npm run lint:styles
Unit tests ensure that code works as expected and can be helpful in finding bugs. These tests are also enforced to pass via CI. Run the unit tests with the following command:
npm test
# Compile JS initially with webpack
npm run build-prod
# Compile and serve the full site locally, watching for changes.
npm start
Now the site will be served at http://localhost:4000 and will be reloaded if you make changes to the source files locally.
The development settings assume data is available at /ga4-data
. You can change this in _development.yml
.
If also working off of local data, e.g. using analytics-reporter
, you will need to make the data available over HTTP and through CORS.
Various tools can do this. This project recommends using the Node module serve
:
npm install -g serve
Generate data to a directory:
analytics --output [dir]
Then run serve
from the output directory:
serve --cors
The data will be available at http://localhost:3000
over CORS, with no path prefix. For example, device data will be at http://localhost:3000/devices.json
.
- Ensure that data is being collected for a specific agency's Google Analytics ID. Visit 18F's analytics-reporter for more information. Save the url path for the data collection path.
- Create a new json object in the
/_data/agencies.json
file. Theslug
attribute of the object will be the url path. Thename
attribute is the Agency's name.
- Index - includes the main dom selection and rendering queue of components, and the entry point for the webpack bundler.
- lib/barchart the d3 configuration of the bar charts
- lib/blocks an object of the specific components
- lib/consoleprint the console messages displayed to users
- lib/exceptions agency data to be changed by discrete exception rules
- lib/formatters methods to help format the display of visualization scales and values
- lib/renderblock d3 manipulator to load and render data for a component block
- lib/timeseries the d3 configuration of the timeseries charts
- lib/transformers helper methods to manipulate and consolidate raw data into proportional data.
Production and staging applications are deployed via CI automatically. Any
commits to the master
branch will be deployed to production after passing
automated tests in CI. Any commits to the staging
branch will be deployed to
the staging environment. Any commits to the develop
branch will be deployed to
the development environment.
It shouldn't be necessary to deploy manually, but with the Cloud Foundry CLI installed, follow these steps to deploy.
To deploy to analytics.usa.gov after building the site with the details in _config.yml
:
make deploy_production
To deploy to analytics-staging.app.cloud.gov after building the site with the details in _config.yml
and _staging.yml
:
make deploy_staging
Environment | Branch | URL |
---|---|---|
Production | master | https://analytics.usa.gov |
Staging | staging | https://analytics-staging.app.cloud.gov |
Development | develop | https://analytics-develop.app.cloud.gov |
The application compiles es6 modules into web friendly js via Wepback and the babel loader.
The webpack configuration is set in the wepback.config.js.
The current configuration uses babel present-env
.
The webpack also includes linting using eslint leveraging the AirBnb linting preset.
The webconfig uses the TerserWebpackPlugin to minimize the bundle.
The resulting uglified bundle is build into assest/bundle.js
.
Command | purpose |
---|---|
npm run build-dev | a watch command rebuilding the webpack with a development configuration (i.e. no minifiecation) |
npm run build-prod | a webpack command to build a minified and transpiled bundle.js |
For a detailed description of how the site works, read 18F's blog post on analytics.usa.gov.
Other organizations who have reused this project for their analytics dashboard:
This blog post details their implementations and lessons learned.
This project is in the worldwide public domain. As stated in CONTRIBUTING:
This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.
All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.