Skip to content

kpcyrd/cloudflare-worker-rust

Repository files navigation

Cloudflare worker example project

Build a Hello World WebAssembly web-service with Rust and run it locally with Cloudflare's workerd:

pacman -S wrangler
git clone https://github.com/kpcyrd/cloudflare-worker-rust
cd cloudflare-worker-rust
wrangler dev
use worker::*;

/// Configure `wrangler.toml` to run this function periodically
///
/// Can be tested with `curl -v "http://localhost:8787/__scheduled?cron=*+*+*+*+*"`
/// However you need to use `wrangler dev --test-scheduled`
#[event(scheduled)]
async fn scheduled(event: ScheduledEvent, _env: Env, _ctx: ScheduleContext) {
    console_debug!("cronjob: {event:?}");
}

/// This function handles all requests
#[event(fetch)]
async fn main(req: Request, env: Env, _ctx: Context) -> Result<Response> {
    let router = Router::new();

    router
        .get_async("/", |req, _ctx| async move {
            let mut response = Response::from_html(format!(
                "<!DOCTYPE html>
<html>
    <head>
        <title>Hello, World! 🐱</title>
    </head>
    <body>
        <h1>🎷🐛</h1>
        <pre>{}</pre>
    </body>
</html>
",
                html_escape::encode_text(&format!("{req:#?}"))
            ))?;
            // https://github.com/cloudflare/workers-rs/pull/447
            response
                .headers_mut()
                .set("Content-Type", "text/html; charset=utf-8")?;
            Ok(response)
        })
        .post_async("/upload", file_upload)
        .run(req, env)
        .await
}

/// Request handler for `/upload`
async fn file_upload(mut req: Request, _ctx: RouteContext<()>) -> Result<Response> {
    let Some(file) = req.form_data().await?.get("file") else {
        return Response::error("Bad Request", 400);
    };
    let FormEntry::File(buf) = file else {
        return Response::error("`file` part of POST form must be a file", 400);
    };

    Response::ok(format!("size = {}\n", buf.bytes().await?.len()))
}

Packaging status

Using npx wrangler

If your Operating System does not provide a wrangler package, you can also run it through the Node.js package manager:

npx wrangler dev

There's currently a hack in wrangler.toml to make this possible

License

MIT OR Apache-2.0

About

Build a Hello World WebAssembly web-service with Rust and run it locally with Cloudflare's workerd

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-Apache-2.0
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages