
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@arnis-lv/guru-ui
Advanced tools
A lightweight, multi-framework UI component library with React, Vue, and vanilla JavaScript support
A lightweight, multi-framework UI component library built for modern web development. Works seamlessly with React, Vue 3, and vanilla JavaScript.
npm install guru-ui
import { Button, ThemeProvider } from 'guru-ui'
import 'guru-ui/style.css'
function App() {
return (
<ThemeProvider>
<Button variant="primary">Get Started</Button>
</ThemeProvider>
)
}
<template>
<ThemeProvider>
<Button variant="primary">Get Started</Button>
</ThemeProvider>
</template>
<script setup>
import { Button, ThemeProvider } from 'guru-ui/vue'
import 'guru-ui/style.css'
</script>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="node_modules/guru-ui/style.css">
</head>
<body>
<button data-guru-button data-variant="primary">Get Started</button>
<script type="module">
import { initializeAllComponents } from 'guru-ui/vanilla'
initializeAllComponents()
</script>
</body>
</html>
All components work identically across frameworks:
import { ThemeProvider, themes } from 'guru-ui'
// Use built-in themes
<ThemeProvider theme={themes.blue}>
<App />
</ThemeProvider>
// Create custom themes
const customTheme = {
accent: '#ff6b6b',
background: '#1a1a1a',
radius: '8px'
}
<ThemeProvider theme={customTheme}>
<App />
</ThemeProvider>
Customize any aspect with CSS variables:
:root {
--guru-accent: #your-brand-color;
--guru-radius: 12px;
--guru-font: 'Your Font', sans-serif;
}
| Package | Size (gzipped) |
|---|---|
| Core components only | ~8KB |
| React components | ~15KB |
| Vue components | ~14KB |
| Vanilla JS | ~10KB |
| Full library | ~25KB |
All sizes include CSS. Actual bundle size depends on which components you import thanks to tree-shaking.
| Framework | Version | Status |
|---|---|---|
| React | 18+ | ✅ Full support |
| Vue | 3.3+ | ✅ Full support |
| Vanilla JS | ES2020+ | ✅ Full support |
Visit our comprehensive documentation for:
We welcome contributions! Please see our Contributing Guide for details.
MIT License - see LICENSE for details.
Built with ❤️ for the developer community
FAQs
A lightweight, multi-framework UI component library with React, Vue, and vanilla JavaScript support
The npm package @arnis-lv/guru-ui receives a total of 2 weekly downloads. As such, @arnis-lv/guru-ui popularity was classified as not popular.
We found that @arnis-lv/guru-ui 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.