
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
capsulas-framework
Advanced tools
The WordPress of Apps - Enterprise visual development framework with 67+ production-ready capsules. Build e-commerce, analytics pipelines, AI systems visually. Includes self-improvement workflows, distributed tracing, circuit breakers, and multi-region de
The WordPress of Apps - Build production-ready applications visually in minutes, not weeks.
Capsulas is a complete enterprise visual development framework with 67+ production-ready modules (capsules) that let you build anything from CRM systems to AI chatbots to real-time analytics pipelines by connecting pre-built, type-safe components.
npm install capsulas-framework
import { createHttpService } from 'capsulas-framework/http';
import { createDatabaseService } from 'capsulas-framework/database';
import { createStripeService } from 'capsulas-framework/payments';
// E-commerce order processing
const processOrder = async (orderData) => {
// HTTP API call
const http = await createHttpService({
baseURL: 'https://api.example.com'
});
// Database transaction
const db = await createDatabaseService({
connectionString: process.env.DATABASE_URL
});
// Payment processing
const stripe = await createStripeService({
apiKey: process.env.STRIPE_SECRET_KEY
});
// Process order with automatic retry & circuit breaker
const payment = await stripe.createPayment({
amount: orderData.total,
currency: 'usd',
idempotencyKey: orderData.id
});
await db.transaction(async (tx) => {
await tx.query('INSERT INTO orders ...', [orderData]);
await tx.query('UPDATE inventory ...', [orderData.items]);
});
return { success: true, paymentId: payment.id };
};
auth-jwt - JWT token authenticationauth-oauth-google - Google OAuth 2.0auth-oauth-github - GitHub OAuthauth-session - Session managementauth-api-key - API key validationauth-2fa - Two-factor authentication (TOTP)auth-password - Password hashing (bcrypt)auth-rbac - Role-based access controlauth-refresh-token - Token refreshauth-logout - Session cleanupPostgreSQL, MySQL, MongoDB, Redis, Prisma, Supabase, TimescaleDB, ClickHouse, Transactions, Migrations, Connection Pooling, Backups
OpenAI Chat, Anthropic Claude, Embeddings, DALL-E, Whisper, Content Moderation, Sentiment Analysis, Text Summarization
Resend, SendGrid, Twilio SMS, Slack, Discord, Telegram, WebSocket, Push Notifications, WhatsApp, Email Templates
Stripe Payment, Stripe Subscriptions, Stripe Webhooks, PayPal, Refunds, Invoice Generation
AWS S3 Upload/Download, Cloudinary, File Compression, PDF Generation, Image Optimization
Webhook, HTTP, GraphQL, Validator, Transformer, Router, Rate Limiter, Delay, Scheduler, Error Handler, Circuit Breaker, Retry Logic, Logger, Queue, Response Formatter
MIT © HubLab
FAQs
The WordPress of Apps - Enterprise visual development framework with 67+ production-ready capsules. Build e-commerce, analytics pipelines, AI systems visually. Includes self-improvement workflows, distributed tracing, circuit breakers, and multi-region de
We found that capsulas-framework 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 breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.