AI News Feeder
Parses an RSS feed and builds a prompt from the results.
Quickly create, distribute, and execute WebAssembly apps, functions and microservices with Spin — our developer framework and CLI.
$
spin new
$
spin build
$
spin up
(main) $spin newPick a template to start your project with: http-go (HTTP request handler using (Tiny)Go) http-swift (HTTP request handler using SwiftWasm)>http-rust (HTTP request handler using Rust) http-zig (HTTP request handler using Zig) kv-explorer (Explore the contents of Spin KV stores) redis-go (Redis message handler using (Tiny)Go) redis-rust (Redis message handler using Rust)
use spin_sdk::http::{IntoResponse, Request};
use spin_sdk::http_component;
/// A simple Spin HTTP component.
#[http_component]
fn handle_hello_world(req: Request) ->
anyhow::Result<impl IntoResponse> { {
println!("Handling request to {:?}",
req.header("spin-full-url"));
Ok(http::Response::builder()
.status(200)
.header("content-type", "text/plain")
.body("Hello, Fermyon!")?)
}
$
spin new
$
spin build
$
spin up
spin cloud deploy
to Fermyon CloudPush your app to the Fermyon Cloud to instantly have a secure publicly available deployment. View and manage your serverless apps, powered by WebAssembly.
Architected to compile and ship your code as Wasm binaries, Fermyon is a lighter, faster and truly serverless cloud. No need to deal with images, OS layers or instance config.
Finally the promise of true sustainable serverless cloud computing is here with Fermyon’s Cloud offering — a platform that allows me to use almost any language, is incredibly easy to use and blazingly fast.”
— Federico Dionisi
Requests are so fast, services can shut back down seamlessly between requests — minimizing compute consumption.
Every Wasm application runs in a secure sandbox — eliminating cross contamination.
A lighter, faster, and more efficient model means lower cost and more sustainable for your business and our planet.
Not just JavaScript — compile almost any language to Wasm.
Fermyon’s Spin works with mainstream languages like JS/TS, Python, .NET, Rust, and Go. We adhere to the WASI standard, which means dozens of languages that have support for Wasm can be compiled, built and deployed.
No tricks. You can run apps on Fermyon Cloud without having to worry about an expiration date. You can opt into future, paid upgrades later on if you need to.