Note: This is an essay about how/why we are using Cloudflare Workers at my current startup Atlas. Skip to part 2 if you want to read only about Workers.
Use a configuration file to customize the development and deployment setup for your Worker project and other Developer Platform products.
Note: This is an essay about how/why we are using Cloudflare Workers at my current startup Atlas. Skip to part 2 if you want to read only about Workers.
Learn how to use Miniflare — the new, fully-featured, open source Cloudflare Workers simulator — in production in this quick tutorial.
This blog just migrated to Cloudflare Workers, Cloudflare’s serverless edge computing solution, because you know, it rocks. This is the workflow I had in mind: I write a new blog post using markdown. I can test things locally before going live. When done, I git add the new post to my repo, then push it to Github. Website gets burned to static files. Website is published to the cloud at Cloudflare. I get a success/failure notification in my Telegram. Done, it’s live. My goal was to fully automate this sequence of events.
Write Cloudflare Workers in 100% Rust via WebAssembly - cloudflare/workers-rs
Workers Analytics Engine is a new way to get telemetry about anything using Cloudflare Workers. Workers Analytics Engine provides time series analytics built for the serverless era.
Note: This is an essay about how/why we are using Cloudflare Workers at my current startup Atlas. Skip to part 2 if you want to read only about Workers.
All the pieces have come together for widespread Wasm SIMD usage. The majority of browsers and Node 16 LTS support Wasm SIMD out of the box, and Rust recently learned how to compile Wasm intrinsics. Now I need to port a library from x86 SIMD to Wasm SIMD and distribute it in such a way that will fallback to a non-SIMD implementation on unsupported devices.
A set of recommendations to make publishing a Javascript library that uses Wasm internally easier for application developers. There are a significant number of use cases and edge cases that we’ll code around as we try and cater to several types of developers: from those who may not know or care about Wasm and the broader JS ecosystem, to more experienced developers who want to optimize every last drop.
Write Cloudflare Workers in 100% Rust via WebAssembly - cloudflare/workers-rs