Gathering detailed insights and metrics for @utrecht/web-component-library-react
Gathering detailed insights and metrics for @utrecht/web-component-library-react
Gathering detailed insights and metrics for @utrecht/web-component-library-react
Gathering detailed insights and metrics for @utrecht/web-component-library-react
Work in Progress: Utrecht Design System based on the NL Design System architecture. Storybook: https://nl-design-system.github.io/utrecht/storybook/
npm install @utrecht/web-component-library-react
Typescript
Module System
Node Version
NPM Version
@utrecht/component-library-css@7.3.0
Updated on Jun 18, 2025
@utrecht/design-tokens@3.3.0
Updated on Jun 18, 2025
@utrecht/tooltip-react@1.0.0
Updated on Jun 18, 2025
@utrecht/tooltip-css@1.0.0
Updated on Jun 18, 2025
@utrecht/component-library-vue@2.3.1
Updated on Jun 16, 2025
@utrecht/design-tokens@3.2.0
Updated on May 27, 2025
TypeScript (73.02%)
SCSS (12.42%)
HTML (5.82%)
JavaScript (4.42%)
MDX (2.33%)
CSS (1.14%)
Vue (0.84%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
EUPL-1.2 License
29 Stars
3,715 Commits
23 Forks
7 Watchers
258 Branches
48 Contributors
Updated on Jun 28, 2025
Latest Version
3.0.7
Package Id
@utrecht/web-component-library-react@3.0.7
Unpacked Size
386.01 kB
Size
62.48 kB
File Count
17
NPM Version
10.9.2
Node Version
22.15.0
Published on
May 22, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
23
The @utrecht/web-component-library-stencil
package contains the actual implementation of every web component, while the @utrecht/web-component-library-react
only contains wrapper React components to provide JSX elements for every Web Component. The implementation of each component will be loaded separately and on-demand, so including the entire component library will not slow down your application.
Install both packages to use React web components in your project:
1npm install --save-dev --save-exact \ 2 @utrecht/web-component-library-react \ 3 @utrecht/web-component-library-stencil
For example, using Next.js:
1import Head from "next/head"; 2import { UtrechtHeading, UtrechtParagraph, UtrechtDocument } from "@utrecht/component-library-react"; 3 4export default function ExamplePage() { 5 return ( 6 <UtrechtDocument> 7 <Head> 8 <title>Example Page</title> 9 </Head> 10 <main> 11 <UtrechtHeading level={1}>Home</UtrechtHeading> 12 <UtrechtParagraph>Hell, world!</UtrechtParagraph> 13 </main> 14 </UtrechtDocument> 15 ); 16}
Since the implementation of the web components needs to be loaded in the browser, include the following effect to import web component library from @utrecht/web-component-library-stencil
, in Next.js this would be in _app.ts
:
1useEffect(() => { 2 import("../public/utrecht/utrecht.esm.js"); 3}, []);
When you're working on a React project and the React component is available, currently you should probably use the React component.
The web components are still experimental. In the future some components might be most convenient to use as web component, and some components might be released exclusively as web component.
No vulnerabilities found.
Reason
30 commit(s) and 12 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
all changesets reviewed
Reason
license file detected
Details
Reason
no binaries found in the repo
Reason
all dependencies are pinned
Details
Reason
SAST tool is not run on all commits -- score normalized to 5
Details
Reason
branch protection is not maximal on development and all release branches
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
83 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More