fiber

Fiber is an Express.js inspired framework for Go, running on fasthttp (the fastest HTTP engine for Go). v3 brings generic support and better middleware.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "fiber" with this command: npx skills add g1joshi/agent-skills/g1joshi-agent-skills-fiber

Fiber

Fiber is an Express.js inspired framework for Go, running on fasthttp (the fastest HTTP engine for Go). v3 brings generic support and better middleware.

When to Use

  • Benchmarks: You need the absolute highest raw throughput.

  • Node.js Background: The API (app.Get("/", ...) feels like Express).

  • Zero Allocation: Obsessive memory optimization.

Core Concepts

Fasthttp

Doesn't use net/http . Much faster but incompatible with some standard library middlewares.

Prefork

Spawn multiple processes (SO_REUSEPORT) to utilize all cores.

Best Practices (2025)

Do:

  • Use v3 : For stable generic support.

  • Be careful with Prefork: Can cause issues with socket connections if not handled.

  • Use Built-in Middleware: Cache, Compress, CORS are highly optimized.

Don't:

  • Don't hold references: fasthttp reuses context objects. Copy strings if you need them after handler returns.

References

  • Fiber Documentation

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

template

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

claude

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

mariadb

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

javascript

No summary provided by upstream source.

Repository SourceNeeds Review