Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@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
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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.