Fission · FaaS · Event-Driven

Serverless.
Betrieben mit Isolated.

Build scalable, event-driven applications without managing infrastructure. Deploy functions in Python, Node.js, Go, PHP, Ruby, and JVM — each isolated in its own Firecracker micro-VM.

7 Runtimes
CHF 0.20 Per 1M Requests
Scale to zero
~0.15s Warm Start
evrtng functions — bash
# 1. Create your account — you get an API key
$ curl -X POST https://fnc4.evrtng.cloud/provisioning/provision \
    -H "X-API-Key: IHR-KEY" -H "Content-Type: application/json" \
    -d '{"displayName": "ihre@email.ch", "plan": "free"}'

# 2. Deploy a function
$ curl -X POST .../v1/namespaces/IHR-NS/functions \
    -H "X-API-Key: IHR-KEY" \
    -d '{"name": "hallo", "environment": "python",
             "code": "def main():\n    return 42"}'

# 3. Invoke anywhere
$ curl -H "X-API-Key: IHR-KEY" \
    https://IHR-NS.fnc4.evrtng.cloud/hallo
API_HOST= https://fnc4.evrtng.cloud
Ereignisgesteuert
HTTP, Kafka, Cron
7 Runtimes
Python, Node, Go, PHP, Ruby, JVM, Binary
Subscription
From CHF 9.95/mo, inkl. MWST
Tenant URLs
https://ihr-ns.fnc4.evrtng.cloud
Cron Triggers
Scheduled execution built in

Wie Serverless funktioniert

Trigger-Ereignis

An HTTP request, Kafka message, or cron job fires a trigger.

Fission Runtime

Your function spins up in an isolated Firecracker micro-VM, executes, then scales back to zero.

Antwort zurückgeben

JSON, HTML oder eine beliebige Antwort wird direkt zurückgegeben. Sie zahlen nur für die Ausführungszeit.

In jeder Sprache schreiben

Alle Sprachen →
Python 3.x
Node.js LTS
Go stable
PHP 8.x
Ruby stable
JVM/Java JVM 21
Binary Eigenes Docker-Image
Isolation Firecracker micro-VM

Simple Subscription Pricing

Vollständige Preise →
Abrechnungsformel
Anfragen $0.20 / 1M requests
Compute (GB·s) $0.0000166667 / GB·s
Inaktive Funktionen $0.00
Gesamtrechnung Anfragen + GB·s
GB·s = (Requests × ms × MB) ÷ 1024
Beispielabrechnung
# Example: 5M requests, 200ms each, 128MB RAM

requests  = 5_000_000
duration  = 200ms
memory    = 128MB

# Request cost
req_cost  = 5 × $0.20 = $1.00

# GB·s = 5M × 0.2s × (128÷1024)
gb_s      = 125_000
gb_s_cost = 125_000 × $0.0000166667
          = $2.08

# Total
total     = $1.00 + $2.08 = $3.08 🎉

Heute starten

Machen Sie bei der Serverless-Revolution mit. Deployen Sie Ihre erste Funktion in unter 5 Minuten.

$ quick start → create account