
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.
Vue UI library & design system based on Nightshade UI (nightshade).
Adds blocks and sections to the library to experiment with quicker landing page and website building.
These add ons are very experimental and still under development. So please use at your own risk.
npm install manjui
For monorepo setups or local development, you can use a file reference in your package.json:
{
"dependencies": {
"manjui": "file:../../libs/manjui"
}
}
Then run:
npm install
// In your main app file (e.g., app.ts or main.ts)
import * as manjuiComponents from 'manjui';
// Import manjui styles
import 'manjui/stylesheets/variables.css';
import 'manjui/stylesheets/baseline.css';
// Register components globally (Vue 3 example)
const app = createApp(App);
for (const [name, component] of Object.entries(manjuiComponents.components || {})) {
app.component(name, component);
}
<template>
<VGroup gap="2">
<Title>Welcome to Manjui</Title>
<Text>A Vue UI library for rapid development</Text>
<Divider />
<HGroup gap="1">
<Btn>Primary</Btn>
<Btn variant="secondary">Secondary</Btn>
</HGroup>
</VGroup>
</template>
VGroup, HGroup, HStack, SizerTitle, Subtitle, Text, LinkInputText, InputBaseBtn, Tab, TabCap, Icon, Image, Circle, DividerManjui uses CSS custom properties for theming. The main style files to import are:
manjui/stylesheets/variables.css - Core design tokensmanjui/stylesheets/baseline.css - Base styles and resetsmanjui/stylesheets/full.css - Complete stylesheet (alternative to importing separately)# Install dependencies
npm install
# Run development server
npm run dev
# Build library
npm run build
# Lint code
npm run lint
This project is based on the Nightshade library by Boris Okunskiy.
Name is inspired by Manjū, my German Shepherd dog.
FAQs
Vue UI library & design system based on Nightshade UI (nightshade)
The npm package manjui receives a total of 9 weekly downloads. As such, manjui popularity was classified as not popular.
We found that manjui 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.

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.