Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@economist/design-system
Advanced tools
This is the repository for The Economist Design System.
npm install @economist/design-system
src/
- The components for the design system (JavaScript and CSS modules)examples/
- Examples of how to reference the design system in a projectUsing the ES6 module export is the recommended way to use the design system with React.
The easiest way to use ES6 modules with React - and to take advantage of features such tree shaking of both JavaScript and CSS and Server Side Rendering - is to use Next.js.
The Design System is currently incompatible with Next 12, please use version 11x
Example of how use a component from the design system:
import React, { Component } from 'react';
import { Button } from '@economist/design-system/common';
export default class extends Component {
render() {
return <Button>Example Button</Button>;
}
}
If you have a Next.js project for your React app (recommended) you can let the design system manage your webpack and babel configuration for you, which will also allow you to load and optimize CSS and SVG files without additional configuration in your application.
No additional dependencies need to be specified when using the design system with a Next.js project. The only dependencies you need are Next, React and The Economist Design System.
"dependencies": {
"@economist/design-system": "^5.44.0",
"next": "11.1.0",
"react": "17.0.2",
"react-dom": "17.0.2"
}
For next.config.js
(to configure webpack) you can use a helper function:
const withDesignSystem = require('@economist/design-system/next');
module.exports = withDesignSystem();
For postcss.config.js
(to configure PostCSS) you can also use a helper function:
const withPostCSS = require('@economist/design-system/postcss');
module.exports = withPostCSS();
Both of these helper functions take custom options which override the default values.
Note: You don't need to use these helper methods (or use Next.js to use ES6 modules) but you may find it's easier than maintaining these configuration files yourself. If you need to add custom configuration directives or override the default settings, you can pass options to both of these helper methods.
If using ES6 and/or Next.js modules isn't practical in your project you can also use the components via UMD module, which should work for any React project.
Using the UMD module is similar to using the ES6 module, the import path will be different and you will also need to include the CSS (as the UMD module can't load the CSS itself):
import React, { Component } from 'react';
import { Button } from '@economist/design-system/dist/umd/common';
import '@economist/design-system/dist/umd/common.css';
export default class extends Component {
render() {
return <Button>Example Button</Button>;
}
}
You can include CSS either by adding a CSS loader to your webpack configuration and loading the CSS in React component (as in the example above) or simply in a stylesheet used on your site.
You do not need to use Next.js to use the design system, the helper methods for Next.js projects are merely provided for convenience.
If you have a different build system, you may find it helpful to refer to the suggested webpack and postcss configuration files, which are bundled along with the module:
const webpackConfig = require('@economist/design-system/webpack.config.js');
const postcssConfig = require('@economist/design-system/postcss.config.js');
Checkout the projects in the ./examples/
directory for examples of how to configure a project to use the design system.
If you are using the popular Jest testing framework, you may need to do some additional configuration in your project as Jest won't pick them up automatically.
babel.config.js
to load the Next preset (if using Next.js):module.exports = {
presets: ['next/babel'],
};
transformIgnorePatterns
in jest.react.config.js
:transformIgnorePatterns: [
'/node_modules/(?!@economist/design-system).+\\.js$',
],
To create or modifiy a component, open a pull request following the steps outlined in CONTRIBUTING.md and following the FE-GUIDELINES.md.
See MAINTAINERS.md.
FAQs
Economist Design System
The npm package @economist/design-system receives a total of 3,104 weekly downloads. As such, @economist/design-system popularity was classified as popular.
We found that @economist/design-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.