Get started guide
This guide will instruct you through setting up a Cloudflare account to deploying your first Worker. This guide assumes that you already have a Cloudflare account. If you do not have a Cloudflare account, sign up before continuing.
1. Install Wrangler (Workers CLI)
Installing wrangler
, the Workers command-line interface (CLI), allows you to init
, dev
, and publish
your Workers projects.
To install wrangler
, ensure you have npm
installed, preferably using a Node version manager like Volta or nvm. Using a version manager helps avoid permission issues and allows you to easily change Node.js versions. Then run:
$ npm install -g wrangler
or install with yarn
:
$ yarn global add wrangler
2. Authenticate Wrangler
To authenticate Wrangler, run wrangler login
:
$ wrangler login
You will be directed to a web page asking you to log in to the Cloudflare dashboard. After you have logged in, you will be asked if Wrangler can make changes to your Cloudflare account. Scroll down and select Allow to continue.
3. Start a new project
With Wrangler installed, you are ready to create your Worker project.
Run wrangler init
followed by your project name:
$ wrangler init <YOUR_WORKER>
In your terminal, you will be asked a series of questions related to your project.
You can also use one of Cloudflare’s templates to start a new project.
After you have created your new Worker, cd
into your new project directory:
$ cd <YOUR_WORKER>
In your project directory, wrangler init
has generated the following files:
wrangler.toml
: Your Wrangler configuration file.index.js
(in/src
): A minimal Hello World Worker written in JavaScript module syntax.package.json
: A minimal Node dependencies configuration file. Only generated if indicated inwrangler init
command.tsconfig.json
: TypeScript configuration that includes Workers types. Only generated if indicated inwrangler init
command.
4. Run your development server
After you have created your first Worker, run the wrangler dev
command to start a local server for developing your Worker. This will allow you to test your Worker in development.
$ wrangler dev
5. Write code
With your new project generated, you can begin to write your code.
After running the wrangler init
command to generate your Worker, the index.js
file will be populated with the code below:
export default { async fetch(request) { return new Response("Hello World!"); },
};
This code block consists of four parts:
- The
export
statement:export default
export default
is JavaScript syntax required for defining JavaScript modules. export default
lets the Workers runtime know that this is a Worker object as opposed to another Cloudflare product. Refer to MDN documentation for more information on default exports.
- The event handler:
async fetch(request)
The event handler indicates what events the Worker should listen to, such as fetch
or scheduled
.
- Parameters:
request
,env
,context
The event handler will always get three parameters passed into it: request
, env
and context
. If you would like to interact with these parameters, you will have to accept the parameters as variables by indicating them in your code. You can choose which parameters to use. They must always be written in order (request
, env
, context
). In this example, request
is indicated and your Worker can now interact with the Request
object.
- The
Response
object:return new Response("Hello World!");
The Workers runtime expects fetch
events to return a Response
object. In this example, you will return a new Response with the string "Hello World!"
.
To review code changes in real time, rewrite the "Hello World!"
string to "Hello Worker!"
and, with wrangler dev
running, save your changes.
To experiment with more premade Workers, refer to Workers Examples.
6. Write test
We recommend writing tests against your Worker. One way to do this is with the unstable_dev
API in Wrangler. unstable_dev
is used for writing integration and end-to-end tests.
After running the wrangler init
command, you will be prompted with questions asking would you like us to write your first test?
, and which test runner you will like to use?
. If you indicate yes and select either vitest
or jest
as your test runner, an index.test.js
file will be created with the following block of code included in the file:
const { unstable_dev } = require("wrangler");
describe("Worker", () => { let worker;
beforeAll(async () => { worker = await unstable_dev("src/index.js", { experimental: { disableExperimentalWarning: true }, }); });
afterAll(async () => { await worker.stop(); });
it("should return Hello World", async () => { const resp = await worker.fetch(); if (resp) { const text = await resp.text(); expect(text).toMatchInlineSnapshot(`"Hello World!"`); } });
});
The code block consists of 4 parts:
The import statement
const { unstable_dev } = require("wrangler");
, this initializes theunstable_dev
API so it can be used in the test suite. Theunstable_dev
function accepts two parameters -await unstable_dev(script, options)
.The
beforeAll()
function for initializingunstable_dev()
, this helps minimize the overhead required to start the dev server for each individual test, running the dev server for each test will take a longer time to resolve which can end up slowing down the tests.The
afterAll()
function, which callsawait worker.stop()
for stopping the dev server after it runs the test suite.The
await worker.fetch()
function, for checking the response received corresponds with what you were expecting.
7. Publish your project
With your project configured, you can now publish your Worker. You can publish your Worker to a custom domain, or, if not configured, the Worker will publish to a *.workers.dev
subdomain by default. To set up a *.workers.dev
subdomain, go to the Cloudflare dashboard > Workers > Your subdomain > Change.
Publish to workers.dev$ wrangler publish
You can preview your Worker at <YOUR_WORKER>.<YOUR_SUBDOMAIN>.workers.dev
.
Next steps
To do more with Workers, explore the Tutorials and Examples.