New URLPatternAPI brings improved pattern matching to Node.js andCloudflare Workers2025-03-24 Today, we are excited to announce that we have contributed an implementation of the URLPatternAPI to Node.js, andit is available starting with the v23.8.0 update. We've done this by adding our URLPattern implementation to Ada URL, the high-performance URL parser that now powers URL handling in both No
Today, we are excited to announce a preview of improved Node.js compatibility for Workers and Pages. Broader compatibility lets you use more NPM packages and take advantage of theJavaScript ecosystem when writing your Workers. Our newest version of Node.js compatibility combines the best features of our previous efforts.Cloudflare Workers have supported Node.js in some form for quite a while. We
We've addedJavaScript-native RPC toCloudflare Workers2024-04-05Cloudflare Workers now features a built-in RPC (Remote Procedure Call) system enabling seamless Worker-to-Worker and Worker-to-Durable Object communication, with almost no boilerplate. Youjust define a class: export class MyService extends WorkerEntrypoint { sum(a, b) { return a + b; } } And then you callit: let three = await env.
ImprovedCloudflare Workers testing via Vitest and workerd2024-03-15 Today, we’re excited to announce a new Workers Vitest integration - allowing you to write unit and integration tests via the popular testing framework, Vitest, that execute directly in our runtime, workerd! This integration provides you with the ability to test anything related to your Worker! For the first time, you can write un
On Thanksgiving Day, November 23,2023,Cloudflare detected a threat actor on our self-hosted Atlassian server. Oursecurity team immediately began an investigation, cut off the threat actor’s access, and on Sunday, November 26, we brought in CrowdStrike’s Forensic team to perform their own independent analysis. Yesterday, CrowdStrike completedits investigation, and we are publishing thisblog po
cloudflare workers routes を利用するので、cloudflare が ns を持つドメインを持っている必要があります。 import { Hono } from "hono"; import {createMiddleware } from "hono/factory"; import { optimizeImage } from "wasm-image-optimization"; import { cache } from "hono/cache"; const app = new Hono(); const via =createMiddleware((c, next) => { if (c.req.header("via")) { console.log("pass through", c.req.raw.url); return fetch(c.req
Remixを使って作ったアプリケーションをRemix v2へアップデートした時のメモです。 Remix v2 | Remix マイグレーションガイド: Upgrading to v2 | Remix アプリケーションは Remix +Cloudflare Pages で動かしてるアプリ。 serverBuildTargetの変更 結構前にテンプレートから生成したアプリだったので、それぞれのビルドターゲットの設定方法が変わっている。 V2では、この初期値が結構変わるので、次のページを参考にしてビルドターゲットに合わせたものを設定する。 serverBuildTargetCloudflare Pages向けのビルドをするので、remix.config.jsに次のように設定する。 この設定はV1でも動くので、まずはこれで動かす。(future.v2_devが有効である必要はあったのかも。忘れ
A SocketAPI that works acrossJavaScript runtimes — announcing a WinterCG spec and Node.js implementation of connect()2023-09-28Earlier this year, we announced a newAPI forcreating outbound TCP sockets — connect(). From day one, we’ve been working with the Web-interoperable Runtimes Community Group (WinterCG) community to chart a course toward making thisAPI a standard, available across all r
Cloudflare Pagesの`{name}.pages.dev`ドメインに自分だけアクセスできるようにアクセス制限をつける手順Cloudflare Pagesの {name}.pages.dev ドメインに自分だけアクセスできるようにアクセス制限をつける手順です。 アプリケーション側の変更は不要で、Cloudflare Accessの機能を使ってアクセス制御ができます。 カスタムドメイン(CloudflareDNS)を設定している場合の方法は色々ありますが、デフォルトで用意されている {name}.pages.dev ドメインに対して設定する手順についてです。 この手順がかなりややこしいので、設定方法メモ書きです。 プレビューブランチへのアクセス制御の有効化手順Cloudflare Pagesでページを作る Settings -> Access policyでEnable ac
Today,Cloudflare is very excited to announce full support for HTTP/3 Extensible Priorities, a new standard that speeds the loading of webpages by up to 37%.Cloudflare worked closely with standardsbuilders to help form the specification for HTTP/3 priorities and is excited to help push the web forward. HTTP/3 Extensible Priorities is available on all plans onCloudflare. For paid users, there is
Superflare はCloudflare Workers 用のフルスタックツールキットです。D1Database 向けのORM や R2 Storage 向けのユーティリティなどの機能を提供しています。 Superflare 自体はフレームワークを謳っておりません。実際に、Superflare は Remix、Next.js、Nuxt.js などのフレームワークと組み合わせることで効果を発揮します。 Getting StartedCloudflare Workers アカウントの作成Cloudflare Workers を動かすためには(ローカル環境も含めて)Cloudflare Workers のアカウントを作成する必要があります。アカウントを作成するには下記サイトから「Sign up」をクリックします。 プランの選択は無料プランである「Free」プランで問題ありません。
Node.js compatibility forCloudflare Workers – starting with Async Context Tracking, EventEmitter, Buffer, assert, and util2023-03-23 Over the coming months,Cloudflare Workers will start to roll out built-in compatibility with Node.js coreAPIs as part of an effort to support increased compatibility acrossJavaScript runtimes. We are happy to announce today that the first of these Node.jsAPIs –
Why WeSwitched CDNs: HowGoogle's Core Web Vitals Led Us toCloudflare PagesMichael As a quick refresher, the Core Web Vitals are a set of metrics developed byGoogle used to measure real-world user experience. They define an assessment where a website must score 'Good' in all three categories in the 75th percentile to pass. The data used in the assessment is collected from real world users. The
Automate an isolated browser instance withjust a fewlines of code2022-11-16 If you’ve evercreated a website that shows any kind of analytics, you’ve probably also thought about adding a “Save Image” or “Save asPDF” button to store and share results. This isn’t as easy asit seems (I can attest to this firsthand) andit’s not long before yougo down a rabbit hole of trying 10 different librarie
Goodbye,Alexa. Hello,Cloudflare RadarDomainRankings2022-09-30 The Internet is a living organism.Technology changes, shifts in human behavior, social events, intentional disruptions, and other occurrences change the Internet in unpredictable ways, even to the trainedeye.Cloudflare Radar has long been the place to visit for accessing data and getting unique insights into how people and organi
Today, we are announcing experimental support for WASI (theWebAssembly System Interface) onCloudflare Workers and support within wrangler2 to makeit a joy to work with. We continue to be incredibly excited about the entireWebAssembly ecosystem and are eager to adopt the standards as they are developed. So what is WASI anyway? To understand WASI, and why we’re excited aboutit,it’s worth a qui
ブラウザだけでなく、非ブラウザなJavaScript(JS)処理系も増えてきたので、「主要ブラウザ、Node.js、Cloudflare Workersでも動くDenoファーストなTypeScript/JavaScriptモジュール開発&CI/CD」をやってみました。一事例として共有します。 はじめに 最近、TypeScriptで hpke-js というモジュールをつくりました。 HPKE (Hybrid Public Key Encryption) というのは、ざっくり言うと、公開鍵を交換しあって共有鍵をつくり、安全にEnd-to-End暗号化をおこなうための規格です。これを WebCryptographyAPI 上に実装し、このAPIをサポートする複数のJS処理系(主要なWebブラウザ、Node.js、Deno、Cloudflare Workers)で動作保証する(ちゃんと全環境で
[[unsafe.bindings]] name = "BindingsRemix" type = "service" service = "bindings-remix-staging" environment = "production" name にTypeScriptやJavaScript内で使用するService Bindingsの編集名を記載します。 service には実際のデプロイされたCloudflare Workersの名前を設定すればOKです。 実際に呼び出すには以下のように記載すれば大丈夫です。今回の例ではModule Workersという形式で記載しています。 export default { async fetch(request: Request, environment: Environment, context: Context): Promise<Res
Next.jsにはIncremental Static Regeneration(以降: ISR)というレンダリングの仕組みが存在します。ところがこれを利用するにはVercel上でNext.jsを使用しないと完璧な動作をしないことは知られています。ですが、このISRの仕組みは従来のSSRよりサーバの処理コストはもちろん、キャッシュという仕組み上レスポンスにも非常に効果のあるものです。 今回はこのISRを独自に構築するための技術を記事として起こしていきます。本記事の続きとなるものはこちらに記載しておりますので、合わせて御覧ください。 【前提条件】 ISRが何という説明は本記事では行いません。 システム構成上、1記事ですべてを説明するにはボリュームが大きいので複数記事に分けさせて頂きます。本記事で詳細するシステム構成には一部成約が存在します。 使用するNext.jsもしくはそれに準ずるもの
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く