Skip to content

Latest commit

 

History

History
 
 

worker-speedtest

Template: worker-speedtest

Deploy to Cloudflare Workers

Worker for measuring download / upload connection speed from the client side, using the Performance Timing API.

index.js is the content of the Workers script.

Note: when running this as your own worker, your latency measurements may differ a small amount from the official version. This is due to the fact that we rely on an internal mechanism to determine the amount of server processing time, which is then subtracted from the measurement.

Setup

To create a my-project directory using this template, run:

$ npm init cloudflare my-project worker-speedtest
# or
$ yarn create cloudflare my-project worker-speedtest
# or
$ pnpm create cloudflare my-project worker-speedtest

Note: Each command invokes create-cloudflare for project creation.

Before publishing your code you need to edit wrangler.toml file and add your Cloudflare account_id - more information about publishing your code can be found in the documentation.

Once you are ready, you can publish your code by running the following command:

$ npm run deploy
# or
$ yarn run deploy
# or
$ pnpm run deploy