Built for Edge Computing

Zero Dependencies.
Zero Bundle Size.
500+ Utilities.

Stop bloating your Cloudflare Workers, Vercel Edge Functions, and Lambda@Edge with npm packages. TinyFn gives you 500+ utilities via API - nothing to bundle, nothing to parse, instant cold starts.

0 KB bundle impact
0 ms INIT overhead
500+ endpoints

The Edge Computing Dilemma

Edge platforms have strict limits. Every dependency is a compromise.

The TinyFn Solution

Replace npm packages with API calls. Zero bundle impact.

Before: Bundled Dependencies

// package.json - 415 KB of dependencies
{
  "dependencies": {
    "uuid": "^9.0.0",        // 15 KB
    "lodash": "^4.17.0",     // 70 KB
    "validator": "^13.0.0",  // 50 KB
    "date-fns": "^2.30.0",   // 80 KB
    "crypto-js": "^4.1.0"    // 200 KB
  }
}
415 KB bundle size
+450ms cold start
$17.80 per 1M cold starts

After: TinyFn API Calls

// No dependencies needed
const uuid = await fetch(
  'https://api.tinyfn.io/v1/generate/uuid',
  { headers: { 'X-API-Key': API_KEY } }
).then(r => r.json());

// Same for validation, hashing, etc.
0 KB bundle size
+0ms cold start
$0.00 INIT cost

Works Everywhere

One API, every edge platform

Most Popular for Edge

The endpoints edge developers use most

Ready to Ship Lighter Edge Functions?

Get your free API key and replace those bloated npm packages with simple API calls.

100 requests/month free. No credit card required.