
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
The most robust React component library for Next.js applications - Built for shakgpt and estimaite
The ultimate React component library for Next.js applications - Built for shakgpt and estimaite, designed for everyone.
npm install shakui
# or
yarn add shakui
# or
pnpm add shakui
import { Button, Card, CardContent, DataTable, Modal } from 'shakui';
import 'shakui/styles';
function App() {
return (
<div className="p-8 space-y-6">
{/* Beautiful cards with glass effects */}
<Card className="glass">
<CardContent className="p-6">
<h2 className="text-2xl font-bold gradient-text">Welcome to ShakUI</h2>
<p className="text-muted-foreground mt-2">The most robust component library for React</p>
</CardContent>
</Card>
{/* Advanced data table with sorting, filtering, selection */}
<DataTable
columns={[
{ key: 'name', title: 'Name', sortable: true },
{ key: 'email', title: 'Email', sortable: true },
{ key: 'role', title: 'Role' },
]}
data={users}
selectable
onSort={(key, direction) => handleSort(key, direction)}
loading={isLoading}
/>
{/* Powerful form components */}
<Form onSubmit={handleSubmit}>
<FormField>
<FormLabel required>Email</FormLabel>
<Input type="email" placeholder="Enter your email" error={errors.email} />
<FormDescription>We'll never share your email with anyone else.</FormDescription>
</FormField>
<FormActions>
<Button type="submit" loading={isSubmitting}>
Submit
</Button>
</FormActions>
</Form>
</div>
);
}
:root {
/* Brand Colors */
--brand-cyan: 190 100% 50%;
--brand-blue: 210 100% 50%;
--brand-gray-900: 222 47% 11%;
/* Semantic Colors */
--success: 142 76% 36%;
--warning: 38 92% 50%;
--error: 0 84% 60%;
/* Glass Morphism */
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
}
// Built-in animation components
<FadeIn delay={200}>
<Card>Content appears smoothly</Card>
</FadeIn>
<StaggeredAnimation stagger={100}>
{items.map(item => (
<SlideUp key={item.id}>
<ItemCard item={item} />
</SlideUp>
))}
</StaggeredAnimation>
// Glass morphism effects
<GlassCard hover>
<h3>Beautiful glass effect</h3>
</GlassCard>
// app/layout.tsx
import 'shakui/styles';
import { Toaster } from 'shakui';
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>
{children}
<Toaster />
</body>
</html>
);
}
// Server Components ready
import { Card, Button } from 'shakui';
export default function ServerPage() {
return (
<Card>
<h1>Server-rendered content</h1>
<Button>Interactive client component</Button>
</Card>
);
}
// tailwind.config.js
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}', './node_modules/shakui/dist/**/*.js'],
theme: {
extend: {
colors: {
// Custom brand colors
brand: {
cyan: 'hsl(var(--brand-cyan))',
blue: 'hsl(var(--brand-blue))',
},
},
},
},
};
# Run full test suite
npm test
# Visual regression testing
npm run test:visual
# Accessibility testing
npm run test:a11y
# Performance testing
npm run test:perf
# Interactive Storybook
npm run storybook
# Component playground
npm run playground
# Type checking
npm run type-check
# Bundle analysis
npm run analyze
// Planning poker room with real-time updates
<RoomCodeCopy roomCode="ABC123" variant="card" />
<ParticipantList
participants={participants}
moderatorId={moderatorId}
revealed={votingRevealed}
/>
<EstimationCards
cards={FIBONACCI_CARDS}
selectedValue={myVote}
onSelect={handleVote}
revealed={votingRevealed}
variant="glass"
animation
/>
// AI content generation dashboard
<Navigation
brand={{ name: 'ShakGPT', aiText: 'AI' }}
items={navigationItems}
/>
<GeneratedContent
content={aiGeneratedContent}
onRegerate={handleRegenerate}
loading={isGenerating}
/>
<FeedbackButton variant="floating" />
| Metric | ShakUI | Competitors |
|---|---|---|
| Bundle Size | 45KB | 120KB+ |
| First Paint | 1.2s | 2.8s+ |
| Accessibility Score | 100/100 | 75/100 |
| TypeScript Coverage | 100% | 60-80% |
| Component Count | 65+ | 20-40 |
# Setup development environment
git clone https://github.com/shakeelbhamani/shakui.git
cd shakui
npm install
# Start development server
npm run dev
# Run tests
npm test
# Build for production
npm run build
MIT © ShakGPT - Use it anywhere, build amazing things.
Built with ❤️ by the ShakGPT team
Powering shakgpt.com and estimaite.com with beautiful, accessible interfaces
FAQs
The most robust React component library for Next.js applications - Built for shakgpt and estimaite
We found that shakui 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.