
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@wildberries/root
Advanced tools
Библиотека визуальных компонентов
Запуск storybook:
npm run startЗапуск тестов:
npm run testЗапуск сборки:
npm run buildДля установки используйте команду npm:
npm install @wildberries/ui-kit
Или команду yarn:
yarn add @wildberries/ui-kit
Компоненты подключаются следующим образом
import { Button, Radio } from '@wildberries/ui-kit'
Новые компоненты необходимо добавлять в папку src/elements
Вложенности внутри компонентов не должно быть.
// bad
elements
|-- input
|-- input-number
|-- radio-button
// good
elements
|-- input-number
|-- radio
Имя компонента должно соответствовать имени папки, в которой он находит
// bad
//index.ts
export { Radio } from './radio-button-group'
elements
|-- radio-button
// good
//index.ts
export { Radio } from './radio'
elements
|-- radio
// good
//index.ts
export { InputNumber } from './input-number'
elements
|-- input-number
Инструкия по деплою новой версии можно посмотреть в файле проекта: RELEASE-PROCESS.md
FAQs
library of ui components
We found that @wildberries/root demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.