
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@noths/elements
Advanced tools
The component library & design system for notonthehighstreet.com
import { Heading } from '@noths/elements';
<Heading />;
_document file which uses the NothsElementsScript before any app code.// _document.js
import { NothsElementsScript } from '@noths/elements';
class MyDocument extends Document {
render() {
return (
<html>
<Head />
<body>
<NothsElementsScript />
<Main />
<NextScript />
</body>
</html>
);
}
}
ElementsWebpackPlugin. This sets @noths/elements as a webpack external when used in the browser, causing the app to use the library from a CDN.// next.config.js
const { ElementsWebpackPlugin } = require('@noths/elements');
module.exports = {
webpack: (webpackConfig, { isServer }) => {
return isServer
? webpackConfig
: {
...webpackConfig,
externals: {
react: 'React',
'react-dom': 'ReactDOM',
'styled-components': 'styled',
},
plugins: [].concat(webpackConfig.plugins, new ElementsWebpackPlugin()).filter(Boolean),
};
},
};
To contribute and create new components please see CONTRIBUTING.md.
FAQs
Component library for the NOTHS design system
We found that @noths/elements demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 26 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.