
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@moises.ai/design-system
Advanced tools
A comprehensive design system built on Radix UI components with custom theming and components.
npm install @moises.ai/design-system
Import components from the main package:
import { Box, Flex, Hello, World, Header } from "@moises.ai/design-system";
function App() {
return (
<Box>
<Header title="My App" />
<Flex>
<Hello name="Developer" />
<World />
</Flex>
</Box>
);
}
Import icons from the icons subpackage:
import { PlayIcon, RecordIcon } from "@moises.ai/design-system/icons";
function IconDemo() {
return (
<div>
<PlayIcon />
<RecordIcon />
</div>
);
}
Import primitive components:
import { Hello, World } from "@moises.ai/design-system/primitives";
function PrimitivesDemo() {
return (
<>
<Hello />
<World />
</>
);
}
Import the CSS styles:
import "@moises.ai/design-system/styles.css";
Make sure to import this at the root of your application to ensure all styles are loaded correctly.
npm install
npm run dev
npm run build
MIT
FAQs
Design System package based on @radix-ui/themes with custom defaults
The npm package @moises.ai/design-system receives a total of 522 weekly downloads. As such, @moises.ai/design-system popularity was classified as not popular.
We found that @moises.ai/design-system demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.