FLIN Hub
Copy templates, not install packages. You own the code after copying.
🚧 Coming Soon
hub.flin.dev is under active development. This page describes the planned functionality.
Philosophy: Copy, Don't Install
npm/pip: "Install black boxes you don't understand"
FLIN: "Copy code you can read and modify"
npm: Dependencies = TECHNICAL DEBT
FLIN: Integrated code = YOU OWN YOUR CODE
npm vs FLIN Hub
| Aspect | npm/pip | FLIN Hub |
|---|---|---|
| Nature | Packages with dependencies | Templates & snippets |
| Action | Install (download tree) | Copy files |
| Versioning | Complex (^1.2.3, ~1.0.0) | Optional (code is yours) |
| Updates | npm update (breaks things) |
Manual (you decide) |
| Security | Transitive vulnerabilities | Read code first |
| Size | GB (node_modules) | KB (your source) |
| Ownership | You use their code | You own the code |
Commands
flin search — Find templates
# Search hub.flin.dev
flin search auth
# Filter by category
flin search auth --category authentication
# Filter by tag
flin search payment --tag africa
flin add — Copy template files
# Copy template to your project
flin add @flin/auth-unified
# Files are COPIED to ./auth/
# No dependencies, no node_modules
# YOU OWN THE CODE - modify freely!
flin info — View template details
flin info @flin/auth-unified
# @flin/auth-unified v1.3.0
# Complete authentication: WhatsApp, Email, SMS, Social
#
# Files:
# auth/login.flin
# auth/register.flin
# auth/components/AuthForm.flin
#
# Downloads: 12,847 | Stars: 342
flin publish — Share your templates
# Login first
flin login
# Publish your template
flin publish
# Private template (PRO plan)
flin publish --private
Workflow Example
# 1. Browse hub.flin.dev (web UI)
# 2. Find template: @flin/auth-unified
# 3. Copy to your project
flin add @flin/auth-unified
# 4. Files are now in ./auth/
# - login.flin
# - register.flin
# - components/AuthForm.flin
# 5. YOU OWN THE CODE - modify freely!
# No "updates" unless you explicitly re-copy
Template Structure
@flin/auth-unified/
├── flin.template.json # Metadata
├── README.md # Documentation
├── preview.png # Screenshot
├── auth/ # Files to be COPIED
│ ├── login.flin
│ ├── register.flin
│ └── components/
│ ├── AuthForm.flin
│ └── OTPInput.flin
└── config.example.flin # Config example
Categories
Authentication
Login, OAuth, 2FA
Dashboard
Admin panels, analytics
E-commerce
Stores, payments
Landing Page
Marketing pages
Blog
Content management
AI
Chatbots, semantic search
Africa
MoMo, WhatsApp auth
Starter
Full starter projects
Utilities
Helper functions
💡 Similar to shadcn/ui
FLIN Hub is inspired by shadcn/ui — copy components into your project, don't install as dependency. You own and customize the code.
🌐 Visit FLIN Hub
Browse templates at hub.flin.dev (coming soon)