
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@wix/design-system
Advanced tools
A collection of React components that conform to Wix Style.
To install the Wix Design System, use one of the following commands:
npm install @wix/design-system
or
yarn add @wix/design-system
All @wix/design-system
applications start with a WixDesignSystemProvider
, which injects the MadeFor
font and enables font smoothing.
import { WixDesignSystemProvider, Button } from '@wix/design-system';
const App = () => (
<WixDesignSystemProvider>
<Button>Hello World!</Button>
</WixDesignSystemProvider>
);
All our components come with Testkits that assist users in testing them effectively.
A component's Testkit provides an interface to the component, enabling automated tests to access its functions without requiring detailed knowledge of the underlying technology.
// Example
// 1. Import
import { InputTestkit } from '@wix/design-system/dist/testkit';
// 2. Initialize
const inputDriver = InputTestkit({
wrapper: document.body,
dataHook: 'name-input',
});
// 3. Interact
it('test', async () => {
await inputDriver.enterText('hello world');
expect(await inputDriver.getText()).toBe('hello world');
});
All methods are documented in our Storybook components stories, and some can be viewed through the TypeScript interface.
Our Testkits currently support three major testing frameworks: @testing-library/react
, puppeteer
, and vanilla
.
Connect with our team and network with other app developers using the Wix Design System in our Discord channel or reach out in Slack #wix-design-system
This project is offered under the MIT License.
FAQs
@wix/design-system
The npm package @wix/design-system receives a total of 2,593 weekly downloads. As such, @wix/design-system popularity was classified as popular.
We found that @wix/design-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 29 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.