
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@riverty/web-components
Advanced tools
Riverty, your flexible Payment Companion. 25+ million users, 1+ billion secure transactions.
Riverty Design System: a design and development toolkit tailor-made for Riverty teams and collaborators.
We welcome contributions to the Web Components package! Here's how to get started:
cd packages/components
npm install
npm run develop # Starts watch mode
Generate a new component:
npx stencil generate component-name
Follow the component checklist:
packages/storybook/stories/import { Component, Prop, h } from '@stencil/core';
@Component({
tag: 'r-component',
styleUrl: 'component.scss',
shadow: true,
})
export class RComponent {
/** Description of prop */
@Prop() myProp: string;
render() {
return <div>{this.myProp}</div>;
}
}
# Run unit tests
npm run test
# Run in watch mode
npm run test -- --watch
npm run build - Build the component librarynpm run develop - Watch mode for developmentnpm run test - Run unit testsnpm run generate - Generate new componentFor complete contribution guidelines, see CONTRIBUTING.md in the repository root.
FAQs
Riverty Design System: Web Components
We found that @riverty/web-components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.