Wrangler commands
Wrangler offers a number of commands to manage your Cloudflare Workers.
docs
- Open this page in your default browser.init
- Create a new project from a variety of web frameworks and templates.generate
- Create a Wrangler project using an existing Workers template.d1
- Interact with D1.vectorize
- Interact with Vectorize indexes.hyperdrive
- Manage your Hyperdrives.deploy
- Deploy your Worker to Cloudflare.dev
- Start a local server for developing your Worker.publish
- Publish your Worker to Cloudflare.delete
- Delete your Worker from Cloudflare.kv:namespace
- Manage Workers KV namespaces.kv:key
- Manage key-value pairs within a Workers KV namespace.kv:bulk
- Manage multiple key-value pairs within a Workers KV namespace in batches.r2 bucket
- Manage Workers R2 buckets.r2 object
- Manage Workers R2 objects.secret
- Manage the secret variables for a Worker.secret:bulk
- Manage multiple secret variables for a Worker.tail
- Start a session to livestream logs from a deployed Worker.pages
- Configure Cloudflare Pages.queues
- Configure Workers Queues.login
- Authorize Wrangler with your Cloudflare account using OAuth.logout
- Remove Wrangler’s authorization for accessing your account.whoami
- Retrieve your user information and test your authentication configuration.versions
- Retrieve details for recent versions.deployments
- Retrieve details for recent deployments.rollback
- Rollback to a recent deployment.dispatch-namespace
- Interact with a dispatch namespace.mtls-certificate
- Manage certificates used for mTLS connections.types
- Generate types from bindings and module rules in configuration.
How to run Wrangler commands
This page provides a reference for Wrangler commands.
wrangler <COMMAND> <SUBCOMMAND> [PARAMETERS] [OPTIONS]
Since Cloudflare recommends installing Wrangler locally in your project(rather than globally), the way to run Wrangler will depend on your specific setup and package manager.
$ npx wrangler <COMMAND> <SUBCOMMAND> [PARAMETERS] [OPTIONS]
$ yarn wrangler <COMMAND> <SUBCOMMAND> [PARAMETERS] [OPTIONS]
$ pnpm wrangler <COMMAND> <SUBCOMMAND> [PARAMETERS] [OPTIONS]
You can add Wrangler commands that you use often as scripts in your project’s package.json
file:
{ ... "scripts": { "deploy": "wrangler deploy", "dev": "wrangler dev" } ...}
You can then run them using your package manager of choice:
$ npm run deploy
$ yarn run deploy
$ pnpm run deploy
docs
Open the Cloudflare developer documentation in your default browser.
wrangler docs [<COMMAND>]
COMMAND
string
- The Wrangler command you want to learn more about. This opens your default browser to the section of the documentation that describes the command.
init
Create a new project via the create-cloudflare-cli (C3) tool. A variety of web frameworks are available to choose from as well as templates. Dependencies are installed by default, with the option to deploy your project immediately.
wrangler init [<NAME>] [OPTIONS]
NAME
string
- The name of the Workers project. This is both the directory name and
name
property in the generatedwrangler.toml
configuration file.
- The name of the Workers project. This is both the directory name and
--yes
boolean
- Answer yes to any prompts for new projects.
--from-dash
string
- Fetch a Worker initialized from the dashboard. This is done by passing the flag and the Worker name.
wrangler init --from-dash <WORKER_NAME>
. - The
--from-dash
command will not automatically sync changes made to the dashboard after the command is used. Therefore, it is recommended that you continue using the CLI.
- Fetch a Worker initialized from the dashboard. This is done by passing the flag and the Worker name.
generate
Create a new project using an existing Workers template.
wrangler generate [<NAME>] [TEMPLATE]
NAME
string
- The name of the Workers project. This is both the directory name and
name
property in the generatedwrangler.toml
configuration file.
- The name of the Workers project. This is both the directory name and
TEMPLATE
string
- The URL of a GitHub template, with a default worker-template. Browse a list of available templates on the cloudflare/workers-sdk repository.
d1
Interact with Cloudflare’s D1 service.
create
Creates a new D1 database, and provides the binding and UUID that you will put in your wrangler.toml
file.
wrangler d1 create <DATABASE_NAME> [OPTIONS]
DATABASE_NAME
string
- The name of the new D1 database.
--location
string
- Provide an optional location hint for your database leader.
- Available options include
weur
(Western Europe),eeur
(Eastern Europe),apac
(Asia Pacific),oc
(Oceania),wnam
(Western North America), andenam
(Eastern North America).
info
Get information about a D1 database, including the current database size and state.
wrangler d1 info <DATABASE_NAME> [OPTIONS]
DATABASE_NAME
string
- The name of the D1 database to get information about.
--json
boolean
- Return output as JSON rather than a table.
list
List all D1 databases in your account.
wrangler d1 list [OPTIONS]
--json
boolean
- Return output as JSON rather than a table.
delete
Delete a D1 database.
wrangler d1 delete <DATABASE_NAME> [OPTIONS]
DATABASE_NAME
string
- The name of the D1 database to delete.
-y, --skip-confirmation
boolean
- Skip deletion confirmation prompt.
execute
Execute a query on a D1 database.
wrangler d1 execute <DATABASE_NAME> [OPTIONS]
DATABASE_NAME
string
- The name of the D1 database to execute a query on.
--command
string
- The SQL query you wish to execute.
--file
string
- Path to the SQL file you wish to execute.
-y, --yes
boolean
- Answer
yes
to any prompts.
- Answer
--local
boolean
- Execute commands/files against a local database for use with wrangler dev.
--remote
boolean
- Execute commands/files against a remote D1 database for use with wrangler dev –remote.
--persist-to
string
- Specify directory to use for local persistence (for use in combination with
--local
).
- Specify directory to use for local persistence (for use in combination with
--json
boolean
- Return output as JSON rather than a table.
--preview
boolean
- Execute commands/files against a preview D1 database (as defined by
preview_database_id
in Wrangler.toml).
- Execute commands/files against a preview D1 database (as defined by
--batch-size
number
- Number of queries to send in a single batch.
export
Export a D1 database or table’s schema and/or content to a .sql
file.
wrangler d1 export <DATABASE_NAME> [OPTIONS]
DATABASE_NAME
string
- The name of the D1 database to export.
--remote
boolean
- Execute commands/files against a remote D1 database for use with wrangler dev –remote.
--output
string
- Path to the SQL file for your export.
--table
string
- The name of the table within a D1 database to export.
--no-data
string
- Controls whether export SQL file contains database data.
--no-schema
string
- Controls whether export SQL file contains database schema.
time-travel restore
Restore a database to a specific point-in-time using Time Travel.
wrangler d1 time-travel restore <DATABASE_NAME> [OPTIONS]
DATABASE_NAME
string
- The name of the D1 database to execute a query on.
--bookmark
string
- A D1 bookmark representing the state of a database at a specific point in time.
--timestamp
string
- A UNIX timestamp or JavaScript date-time
string
within the last 30 days.
- A UNIX timestamp or JavaScript date-time
--json
boolean
- Return output as JSON rather than a table.
time-travel info
Inspect the current state of a database for a specific point-in-time using Time Travel.
wrangler d1 time-travel info <DATABASE_NAME> [OPTIONS]
DATABASE_NAME
string
- The name of the D1 database to execute a query on.
--timestamp
string
- A UNIX timestamp or JavaScript date-time
string
within the last 30 days.
- A UNIX timestamp or JavaScript date-time
--json
boolean
- Return output as JSON rather than a table.
backup create
Initiate a D1 backup.
wrangler d1 backup create <DATABASE_NAME>
DATABASE_NAME
string
- The name of the D1 database to backup.
backup list
List all available backups.
wrangler d1 backup list <DATABASE_NAME>
DATABASE_NAME
string
- The name of the D1 database to list the backups of.
backup restore
Restore a backup into a D1 database.
wrangler d1 backup restore <DATABASE_NAME> <BACKUP_ID>
DATABASE_NAME
string
- The name of the D1 database to restore the backup into.
BACKUP_ID
string
- The ID of the backup you wish to restore.
backup download
Download existing data to your local machine.
wrangler d1 backup download <DATABASE_NAME> <BACKUP_ID>
DATABASE_NAME
string
- The name of the D1 database you wish to download the backup of.
BACKUP_ID
string
- The ID of the backup you wish to download.
--output
string
- The
.sqlite3
file to write to (defaults to'<DB_NAME>.<SHORT_BACKUP_ID>.sqlite3'
).
- The
migrations create
Create a new migration.
This will generate a new versioned file inside the migrations
folder. Name your migration file as a description of your change. This will make it easier for you to find your migration in the migrations
folder. An example filename looks like:
0000_create_user_table.sql
The filename will include a version number and the migration name you specify below.
wrangler d1 migrations create <DATABASE_NAME> <MIGRATION_NAME>
DATABASE_NAME
string
- The name of the D1 database you wish to create a migration for.
MIGRATION_NAME
string
- A descriptive name for the migration you wish to create.
migrations list
View a list of unapplied migration files.
wrangler d1 migrations list <DATABASE_NAME> [OPTIONS]
DATABASE_NAME
string
- The name of the D1 database you wish to list unapplied migrations for.
--local
boolean
- Show the list of unapplied migration files on your locally persisted D1 database.
--persist-to
string
- Specify directory to use for local persistence (for use in combination with
--local
).
- Specify directory to use for local persistence (for use in combination with
--preview
boolean
- Show the list of unapplied migration files on your preview D1 database (as defined by
preview_database_id
inwrangler.toml
).
- Show the list of unapplied migration files on your preview D1 database (as defined by
migrations apply
Apply any unapplied migrations.
This command will prompt you to confirm the migrations you are about to apply. Confirm that you would like to proceed. After, a backup will be captured.
The progress of each migration will be printed in the console.
When running the apply command in a CI/CD environment or another non-interactive command line, the confirmation step will be skipped, but the backup will still be captured.
If applying a migration results in an error, this migration will be rolled back, and the previous successful migration will remain applied.
wrangler d1 migrations apply <DATABASE_NAME> [OPTIONS]
DATABASE_NAME
string
- The name of the D1 database you wish to apply your migrations on.
--local
boolean
- Execute any unapplied migrations on your locally persisted D1 database.
--remote
boolean
- Execute any unapplied migrations on your remote D1 database.
--persist-to
string
- Specify directory to use for local persistence (for use in combination with
--local
).
- Specify directory to use for local persistence (for use in combination with
--preview
boolean
- Execute any unapplied migrations on your preview D1 database (as defined by
preview_database_id
inwrangler.toml
).
- Execute any unapplied migrations on your preview D1 database (as defined by
--batch-size
number
- Number of queries to send in a single batch.
hyperdrive
Manage Hyperdrive database configurations.
create
Create a new Hyperdrive configuration.
wrangler hyperdrive create <ID> [OPTIONS]
ID
string
- The ID of the Hyperdrive configuration to create.
--connection-string
string
- The database connection string in the form
postgres://user:password@hostname:port/database
.
- The database connection string in the form
--caching-disabled
boolean
- Disables the caching of SQL responses.
--max-age
number
- Specifies max duration for which items should persist in the cache, cannot be set when caching is disabled.
--swr
number
- Stale While Revalidate - Indicates the number of seconds cache may serve the response after it becomes stale, cannot be set when caching is disabled.
update
Update an existing Hyperdrive configuration.
wrangler hyperdrive update <ID> [OPTIONS]
ID
string
- The ID of the Hyperdrive configuration to update.
--name
string
- The new name of the Hyperdrive configuration.
--origin-host
string
- The new database hostname or IP address Hyperdrive should connect to.
--origin-port
string
- The new database port to connect to.
--database
string
- The new database (name) to connect to. For example, Postgres or defaultdb.
--origin-user
string
- The new username used to authenticate to the database.
--origin-password
string
- The new password used to authenticate to the database.
--caching-disabled
boolean
- Disables the caching of SQL responses.
--max-age
number
- Specifies max duration for which items should persist in the cache, cannot be set when caching is disabled.
--swr
number
- Stale While Revalidate - Indicates the number of seconds cache may serve the response after it becomes stale, cannot be set when caching is disabled.
list
List all Hyperdrive configurations.
wrangler hyperdrive list
delete
Delete an existing Hyperdrive configuration.
wrangler hyperdrive delete <ID>
ID
string
- The name of the Hyperdrive configuration to delete.
get
Get an existing Hyperdrive configuration.
wrangler hyperdrive get <ID>
ID
string
- The name of the Hyperdrive configuration to get.
vectorize
Interact with a Vectorize vector database.
create
Creates a new vector index, and provides the binding and name that you will put in your wrangler.toml
file.
wrangler vectorize create <INDEX_NAME> [--dimensions=<NUM_DIMENSIONS>] [--metric=<DISTANCE_METRIC>]
INDEX_NAME
string
- The name of the new index to create. Cannot be changed.
--dimensions
number
- The vector dimension width to configure the index for. Cannot be changed after creation.
--metric
string
- The distance metric to use for calculating vector distance. Must be one of
cosine
,euclidean
, ordot-product
.
- The distance metric to use for calculating vector distance. Must be one of
get
Get details about an individual index, including its configuration.
wrangler vectorize get <INDEX_NAME>
INDEX_NAME
string
- The name of the index to fetch details for.
list
List all Vectorize indexes in your account, including the configured dimensions and distance metric.
wrangler vectorize list
delete
Delete a Vectorize index.
wrangler vectorize delete <INDEX_NAME> [OPTIONS]
INDEX_NAME
string
- The name of the Vectorize index to delete.
--force
boolean
- Skip confirmation when deleting the index (Note: This is not a recoverable operation).
insert
Insert vectors into an index.
wrangler vectorize insert <INDEX_NAME> [OPTIONS]
INDEX_NAME
string
- The name of the Vectorize index to delete.
--file
string
- A file containing the vectors to insert in newline-delimited JSON (JSON) format.
--batch-size
number
- The number of vectors to insert at a time (default:
5000
).
- The number of vectors to insert at a time (default:
dev
Start a local server for developing your Worker.
wrangler dev [<SCRIPT>] [OPTIONS]
SCRIPT
string
- The path to an entry point for your Worker. Only required if your
wrangler.toml
does not include amain
key (for example,main = "index.js"
).
- The path to an entry point for your Worker. Only required if your
--name
string
- Name of the Worker.
--no-bundle
boolean
- Skip Wrangler’s build steps. Particularly useful when using custom builds. Refer to Bundling for more information.
--env
string
- Perform on a specific environment.
--compatibility-date
string
- A date in the form yyyy-mm-dd, which will be used to determine which version of the Workers runtime is used.
--compatibility-flags
,--compatibility-flag
string[]
- Flags to use for compatibility checks.
--latest
boolean
- Use the latest version of the Workers runtime.
--ip
string
- IP address to listen on, defaults to
localhost
.
- IP address to listen on, defaults to
--port
number
- Port to listen on.
--inspector-port
number
- Port for devtools to connect to.
--routes
,--route
string[]
- Routes to upload.
- For example:
--route example.com/*
.
--host
string
- Host to forward requests to, defaults to the zone of project.
--local-protocol
“http”|“https”
- Protocol to listen to requests on.
--https-key-path
string
- Path to a custom certificate key.
--https-cert-path
string
- Path to a custom certificate.
--local-upstream
string
- Host to act as origin in local mode, defaults to
dev.host
or route.
- Host to act as origin in local mode, defaults to
--assets
string
- Root folder of static assets to be served.
- Use in combination with
--name
and--latest
for basic static file hosting. For example:wrangler dev --name personal_blog --assets dist/ --latest
.
--site
string
- Root folder of static assets for Workers Sites.
--site-include
string[]
- Array of
.gitignore
-style patterns that match file or directory names from the sites directory. Only matched items will be uploaded.
- Array of
--site-exclude
string[]
- Array of
.gitignore
-style patterns that match file or directory names from the sites directory. Matched items will not be uploaded.
- Array of
--upstream-protocol
“http”|“https”
- Protocol to forward requests to host on.
--var
key:value[]
- Array of
key:value
pairs to inject as variables into your code. The value will always be passed as a string to your Worker. - For example,
--var git_hash:$(git rev-parse HEAD) test:123
makes thegit_hash
andtest
variables available in your Worker’senv
. - This flag is an alternative to defining
vars
in yourwrangler.toml
. If defined in both places, this flag’s values will be used.
- Array of
--define
key:value[]
- Array of
key:value
pairs to replace global identifiers in your code. - For example,
--define GIT_HASH:$(git rev-parse HEAD)
will replace all uses ofGIT_HASH
with the actual value at build time. - This flag is an alternative to defining
define
in yourwrangler.toml
. If defined in both places, this flag’s values will be used.
- Array of
--tsconfig
string
- Path to a custom
tsconfig.json
file.
- Path to a custom
--minify
boolean
- Minify the Worker.
--node-compat
boolean
- Enable Node.js compatibility.
--persist-to
string
- Specify directory to use for local persistence.
--remote
boolean
- Develop against remote resources and data stored on Cloudflare’s network.
--test-scheduled
boolean
- Exposes a
/__scheduled
fetch route which will trigger a scheduled event (Cron Trigger) for testing during development. To simulate different cron patterns, acron
query parameter can be passed in:/__scheduled?cron=*+*+*+*+*
.
- Exposes a
--log-level
“debug”|“info”|“log”|“warn”|“error”|“none”
- Specify Wrangler’s logging level.
--show-interactive-dev-session
boolean
- Show the interactive dev session.
wrangler dev
is a way to locally test your Worker while developing. With wrangler dev
running, send HTTP requests to localhost:8787
and your Worker should execute as expected. You will also see console.log
messages and exceptions appearing in your terminal.
deploy
Deploy your Worker to Cloudflare.
wrangler deploy [<SCRIPT>] [OPTIONS]
SCRIPT
string
- The path to an entry point for your Worker. Only required if your
wrangler.toml
does not include amain
key (for example,main = "index.js"
).
- The path to an entry point for your Worker. Only required if your
--name
string
- Name of the Worker.
--no-bundle
boolean
- Skip Wrangler’s build steps. Particularly useful when using custom builds. Refer to Bundling for more information.
--env
string
- Perform on a specific environment.
--outdir
string
- Path to directory where Wrangler will write the bundled Worker files.
--compatibility-date
string
- A date in the form yyyy-mm-dd, which will be used to determine which version of the Workers runtime is used.
--compatibility-flags
,--compatibility-flag
string[]
- Flags to use for compatibility checks.
--latest
boolean
- Use the latest version of the Workers runtime.
--assets
string
- Root folder of static assets to be served.
- Use in combination with
--name
and--latest
for basic static file hosting. For example:npx wrangler deploy --name personal_blog --assets dist/ --latest
.
--site
string
- Root folder of static assets for Workers Sites.
--site-include
string[]
- Array of
.gitignore
-style patterns that match file or directory names from the sites directory. Only matched items will be uploaded.
- Array of
--site-exclude
string[]
- Array of
.gitignore
-style patterns that match file or directory names from the sites directory. Matched items will not be uploaded.
- Array of
--var
key:value[]
- Array of
key:value
pairs to inject as variables into your code. The value will always be passed as a string to your Worker. - For example,
--var git_hash:$(git rev-parse HEAD) test:123
makes thegit_hash
andtest
variables available in your Worker’senv
. - This flag is an alternative to defining
vars
in yourwrangler.toml
. If defined in both places, this flag’s values will be used.
- Array of
--define
key:value[]
- Array of
key:value
pairs to replace global identifiers in your code. - For example,
--define GIT_HASH:$(git rev-parse HEAD)
will replace all uses ofGIT_HASH
with the actual value at build time. - This flag is an alternative to defining
define
in yourwrangler.toml
. If defined in both places, this flag’s values will be used.
- Array of
--triggers
,--schedule
,--schedules
string[]
- Cron schedules to attach to the deployed Worker. Refer to Cron Trigger Examples.
--routes
,--route
string[]
- Routes where this Worker will be deployed.
- For example:
--route example.com/*
.
--tsconfig
string
- Path to a custom
tsconfig.json
file.
- Path to a custom
--minify
boolean
- Minify the bundled Worker before deploying.
--node-compat
boolean
- Enable node.js compatibility.
--dry-run
boolean
- Compile a project without actually deploying to live servers. Combined with
--outdir
, this is also useful for testing the output ofnpx wrangler deploy
. It also gives developers a chance to upload our generated sourcemap to a service like Sentry, so that errors from the Worker can be mapped against source code, but before the service goes live.
- Compile a project without actually deploying to live servers. Combined with
--keep-vars
boolean
- It is recommended best practice to treat your Wrangler developer environment as a source of truth for your Worker configuration, and avoid making changes via the Cloudflare dashboard.
- If you change your environment variables or bindings in the Cloudflare dashboard, Wrangler will override them the next time you deploy. If you want to disable this behaviour set
keep-vars
totrue
.
--dispatch-namespace
string
- Specify the Workers for Platforms dispatch namespace to upload this Worker to.
publish
Publish your Worker to Cloudflare.
wrangler publish [OPTIONS]
delete
Delete your Worker and all associated Cloudflare developer platform resources.
wrangler delete [<SCRIPT>] [OPTIONS]
SCRIPT
string
- The path to an entry point for your Worker. Only required if your
wrangler.toml
does not include amain
key (for example,main = "index.js"
).
- The path to an entry point for your Worker. Only required if your
--name
string
- Name of the Worker.
--env
string
- Perform on a specific environment.
--dry-run
boolean
- Do not actually delete the Worker. This is useful for testing the output of
wrangler delete
.
- Do not actually delete the Worker. This is useful for testing the output of
kv:namespace
Manage Workers KV namespaces.
create
Create a new namespace.
wrangler kv:namespace create <NAMESPACE> [OPTIONS]
NAMESPACE
string
- The name of the new namespace.
--env
string
- Perform on a specific environment.
--preview
boolean
- Interact with a preview namespace (the
preview_id
value).
- Interact with a preview namespace (the
The following is an example of using the create
command to create a KV namespace called MY_KV
.
$ npx wrangler kv:namespace create "MY_KV"
🌀 Creating namespace with title "worker-MY_KV"✨ Success!Add the following to your configuration file in your kv_namespaces array:kv_namespaces = [ { binding = "MY_KV", id = "e29b263ab50e42ce9b637fa8370175e8" }]
The following is an example of using the create
command to create a preview KV namespace called MY_KV
.
$ npx wrangler kv:namespace create "MY_KV" --preview
🌀 Creating namespace with title "my-site-MY_KV_preview"✨ Success!Add the following to your configuration file in your kv_namespaces array:kv_namespaces = [ { binding = "MY_KV", preview_id = "15137f8edf6c09742227e99b08aaf273" }]
list
List all KV namespaces associated with the current account ID.
wrangler kv:namespace list
The following is an example that passes the Wrangler command through the jq
command:
$ npx wrangler kv:namespace list | jq "."
[ { "id": "06779da6940b431db6e566b4846d64db", "title": "TEST_NAMESPACE" }, { "id": "32ac1b3c2ed34ed3b397268817dea9ea", "title": "STATIC_CONTENT" }]
delete
Delete a given namespace.
wrangler kv:namespace delete {--bindings=<BINDING>|--namespace-id=<NAMESPACE_ID>} [OPTIONS]
--binding
string
- The binding name of the namespace, as stored in the
wrangler.toml
file, to delete.
- The binding name of the namespace, as stored in the
--namespace-id
string
- The ID of the namespace to delete.
--env
string
- Perform on a specific environment.
--preview
boolean
- Interact with a preview namespace instead of production.
The following is an example of deleting a KV namespace called MY_KV.
$ npx wrangler kv:namespace delete --binding=MY_KV
Are you sure you want to delete namespace f7b02e7fc70443149ac906dd81ec1791? [y/n]yesDeleting namespace f7b02e7fc70443149ac906dd81ec1791Deleted namespace f7b02e7fc70443149ac906dd81ec1791
The following is an example of deleting a preview KV namespace called MY_KV
.
$ npx wrangler kv:namespace delete --binding=MY_KV --preview
Are you sure you want to delete namespace 15137f8edf6c09742227e99b08aaf273? [y/n]yesDeleting namespace 15137f8edf6c09742227e99b08aaf273Deleted namespace 15137f8edf6c09742227e99b08aaf273
kv:key
Manage key-value pairs within a Workers KV namespace.
put
Write a single key-value pair to a particular namespace.
wrangler kv:key put <KEY> {<VALUE>|--path=<PATH>} {--binding=<BINDING>|--namespace-id=<NAMESPACE_ID>} [OPTIONS]
KEY
string
- The key to write to.
VALUE
string
- The value to write.
--path
- When defined, the value is loaded from the file at
--path
rather than reading it from theVALUE
argument. This is ideal for security-sensitive operations because it avoids saving keys and values into your terminal history.
- When defined, the value is loaded from the file at
--binding
string
- The binding name of the namespace, as stored in the
wrangler.toml
file, to delete.
- The binding name of the namespace, as stored in the
--namespace-id
string
- The ID of the namespace to delete.
--env
string
- Perform on a specific environment.
--preview
boolean
- Interact with a preview namespace instead of production.
--ttl
number
- The lifetime (in number of seconds) that the key-value pair should exist before expiring. Must be at least
60
seconds. This option takes precedence over theexpiration
option.
- The lifetime (in number of seconds) that the key-value pair should exist before expiring. Must be at least
--expiration
number
- The timestamp, in UNIX seconds, indicating when the key-value pair should expire.
--metadata
string
- Any (escaped) JSON serialized arbitrary object to a maximum of 1024 bytes.
--local
boolean
- Interact with locally persisted data.
--persist-to
string
- Specify directory for locally persisted data.
The following is an example that puts a key-value into the namespace with binding name of MY_KV
.
$ npx wrangler kv:key put --binding=MY_KV "my-key" "some-value"
Writing the value "some-value" to key "my-key" on namespace f7b02e7fc70443149ac906dd81ec1791.
The following is an example that puts a key-value into the preview namespace with binding name of MY_KV
.
$ npx wrangler kv:key put --binding=MY_KV --preview "my-key" "some-value"
Writing the value "some-value" to key "my-key" on namespace 15137f8edf6c09742227e99b08aaf273.
The following is an example that puts a key-value into a namespace, with a time-to-live value of 10000
seconds.
$ npx wrangler kv:key put --binding=MY_KV "my-key" "some-value" --ttl=10000
Writing the value "some-value" to key "my-key" on namespace f7b02e7fc70443149ac906dd81ec1791.
The following is an example that puts a key-value into a namespace, where the value is read from the value.txt
file.
$ npx wrangler kv:key put --binding=MY_KV "my-key" --path=value.txt
Writing the contents of value.txt to the key "my-key" on namespace f7b02e7fc70443149ac906dd81ec1791.
list
Output a list of all keys in a given namespace.
wrangler kv:key list {--binding=<BINDING>|--namespace-id=<NAMESPACE_ID>} [OPTIONS]
--binding
string
- The binding name of the namespace, as stored in the
wrangler.toml
file, to delete.
- The binding name of the namespace, as stored in the
--namespace-id
string
- The ID of the namespace to delete.
--env
string
- Perform on a specific environment.
--preview
boolean
- Interact with a preview namespace instead of production.
--prefix
string
- Only list keys that begin with the given prefix.
--local
boolean
- Interact with locally persisted data.
--persist-to
string
- Specify directory for locally persisted data.
Below is an example that passes the Wrangler command through the jq
command:
$ npx wrangler kv:key list --binding=MY_KV --prefix="public" | jq "."
[ { "name": "public_key" }, { "name": "public_key_with_expiration", "expiration": "2019-09-10T23:18:58Z" }]
get
Read a single value by key from the given namespace.
wrangler kv:key get <KEY> {--binding=<BINDING>|--namespace-id=<NAMESPACE_ID>} [OPTIONS]
KEY
string
- The key value to get.
--binding
string
- The binding name of the namespace, as stored in the
wrangler.toml
file, to get from.
- The binding name of the namespace, as stored in the
--namespace-id
string
- The ID of the namespace to get from.
--env
string
- Perform on a specific environment.
--preview
boolean
- Interact with a preview namespace instead of production.
--text
boolean
- Decode the returned value as a UTF-8 string.
--local
boolean
- Interact with locally persisted data.
--persist-to
string
- Specify directory for locally persisted data.
The following is an example that gets the value of the "my-key"
key from the KV namespace with binding name MY_KV
.
$ npx wrangler kv:key get --binding=MY_KV "my-key"
value
delete
Remove a single key value pair from the given namespace.
wrangler kv:key delete <KEY> {--binding=<BINDING>|--namespace-id=<NAMESPACE_ID>} [OPTIONS]
KEY
string
- The key value to get.
--binding
string
- The binding name of the namespace, as stored in the
wrangler.toml
file, to delete.
- The binding name of the namespace, as stored in the
--namespace-id
string
- The ID of the namespace to delete.
--env
string
- Perform on a specific environment.
--preview
boolean
- Interact with a preview namespace instead of production.
--local
boolean
- Interact with locally persisted data.
--persist-to
string
- Specify directory for locally persisted data.
The following is an example that deletes the key-value pair with key "my-key"
from the KV namespace with binding name MY_KV
.
$ npx wrangler kv:key delete --binding=MY_KV "my-key"
Deleting the key "my-key" on namespace f7b02e7fc70443149ac906dd81ec1791.
kv:bulk
Manage multiple key-value pairs within a Workers KV namespace in batches.
put
Write a JSON file containing an array of key-value pairs to the given namespace.
wrangler kv:bulk put <FILENAME> {--binding=<BINDING>|--namespace-id=<NAMESPACE_ID>} [OPTIONS]
FILENAME
string
- The JSON file containing an array of key-value pairs to write to the namespace.
--binding
string
- The binding name of the namespace, as stored in the
wrangler.toml
file, to delete.
- The binding name of the namespace, as stored in the
--namespace-id
string
- The ID of the namespace to delete.
--env
string
- Perform on a specific environment.
--preview
boolean
- Interact with a preview namespace instead of production.
--local
boolean
- Interact with locally persisted data.
--persist-to
string
- Specify directory for locally persisted data.
This command takes a JSON file as an argument with a list of key-value pairs to upload. An example of JSON input:
[ { "key": "test_key", "value": "test_value", "expiration_ttl": 3600 }
]
KV namespace values can only store strings. In order to save complex a value, stringify it to JSON:
[ { "key": "test_key", "value": "{\"name\": \"test_value\"}", "expiration_ttl": 3600 }
]
Refer to the full schema for key-value entries uploaded via the bulk API:
key
string
- The key’s name. The name may be 512 bytes maximum. All printable, non-whitespace characters are valid.
value
string
- The UTF-8 encoded string to be stored, up to 25 MB in length.
metadata
object
- Any arbitrary object (must serialize to JSON) to a maximum of 1024 bytes.
expiration
number
- The time, measured in number of seconds since the UNIX epoch, at which the key should expire.
expiration_ttl
number
- The number of seconds the document should exist before expiring. Must be at least
60
seconds.
- The number of seconds the document should exist before expiring. Must be at least
base64
boolean
- When true, the server will decode the value as base64 before storing it. This is useful for writing values that would otherwise be invalid JSON strings, such as images. Defaults to
false
.
- When true, the server will decode the value as base64 before storing it. This is useful for writing values that would otherwise be invalid JSON strings, such as images. Defaults to
The following is an example of writing all the key-value pairs found in the allthethingsupload.json
file.
$ npx wrangler kv:bulk put --binding=MY_KV allthethingsupload.json
Success!
delete
Delete all keys read from a JSON file within a given namespace.
wrangler kv:bulk delete <FILENAME> {--binding=<BINDING>|--namespace-id=<NAMESPACE_ID>} [OPTIONS]
FILENAME
string
- The JSON file containing an array of keys to delete from the namespace.
--binding
string
- The binding name of the namespace, as stored in the
wrangler.toml
file, to delete.
- The binding name of the namespace, as stored in the
--namespace-id
string
- The ID of the namespace to delete.
--env
string
- Perform on a specific environment.
--preview
boolean
- Interact with a preview namespace instead of production.
--local
boolean
- Interact with locally persisted data.
--persist-to
string
- Specify directory for locally persisted data.
This command takes a JSON file as an argument containing an array of keys to delete. The following is an example of the JSON input:
["test_key_1", "test_key_2"]
The following is an example of deleting all the keys found in the allthethingsdelete.json
file.
$ npx wrangler kv:bulk delete --binding=MY_KV allthethingsdelete.json
? Are you sure you want to delete all keys in allthethingsdelete.json from kv-namespace with id "f7b02e7fc70443149ac906dd81ec1791"? › (Y/n)Success!
r2 bucket
Interact with buckets in an R2 store.
create
Create a new R2 bucket.
wrangler r2 bucket create <NAME>
NAME
string
- The name of the new R2 bucket.
--storage-class
“Standard”|“InfrequentAccess”
- The default storage class for objects uploaded to the bucket.
--jurisdiction
string
- The jurisdiction where the R2 bucket is created. Refer to Jurisdictional Restrictions.
delete
Delete an R2 bucket.
wrangler r2 bucket delete <NAME>
NAME
string
- The name of the R2 bucket to delete.
list
List R2 bucket in the current account.
wrangler r2 bucket list
notification create
Create an event notification rule for an R2 bucket.
wrangler r2 bucket notification create <NAME> [OPTIONS]
NAME
string
- The name of the R2 bucket to create an event notification rule for.
--event-type
“object-create”|“object-delete”
- The type of event that will trigger event notifications.
--queue
string
- The name of the queue that will receive event notification messages.
--prefix
string
- Specifies the key name prefix that an object must match to trigger event notifications.
--suffix
string
- Specifies the key name suffix that an object must match to trigger event notifications.
notification delete
Remove a rule from a bucket’s event notification configuration.
wrangler r2 bucket notification delete <NAME> [OPTIONS]
NAME
string
- The name of the R2 bucket to delete an event notification rule for.
--queue
string
- The name of the queue that corresponds to the event notification rule.
notification get
Get the event notification configuration for a bucket.
wrangler r2 bucket notification get <NAME>
NAME
string
- The name of the R2 bucket to get event notification configuration for.
sippy enable
Enable Sippy incremental migration for a bucket.
wrangler r2 bucket sippy enable <NAME> [OPTIONS]
NAME
string
- The name of the R2 bucket to enable Sippy.
--provider
“AWS”|“GCS”
- The provider of your source object storage bucket.
--bucket
string
- The name of your source object storage bucket.
--r2-key-id
string
- Your R2 Access Key ID. Requires read and write access.
--r2-secret-access-key
string
- Your R2 Secret Access Key. Requires read and write access.
--jurisdiction
string
- The jurisdiction where this R2 bucket is located, if a jurisdiction has been specified. Refer to Jurisdictional Restrictions.
- AWS S3 provider-specific options:
--key-id
string
- Your AWS Access Key ID. Requires read and list access.
--secret-access-key
string
- Your AWS Secret Access Key. Requires read and list access.
--region
string
- The AWS region where your S3 bucket is located. For example:
us-west-2
.
- The AWS region where your S3 bucket is located. For example:
- Google Cloud Storage provider-specific options:
--service-account-key-file
string
- The path to your Google Cloud service account key JSON file. This will read the service account key file and populate
client_email
andprivate_key
options. Requires read and list access.
- The path to your Google Cloud service account key JSON file. This will read the service account key file and populate
--client-email
string
- The client email for your Google Cloud service account key. Requires read and list access.
--private-key
string
- The private key for your Google Cloud service account key. Requires read and list access.
- Note that you must provide either
service-account-key-file
orclient_email
andprivate_key
for this command to run successfully.
sippy disable
Disable Sippy incremental migration for a bucket.
wrangler r2 bucket sippy disable <NAME>
NAME
string
- The name of the R2 bucket to disable Sippy.
sippy get
Get the status of Sippy incremental migration for a bucket.
wrangler r2 bucket sippy get <NAME>
NAME
string
- The name of the R2 bucket to get the status of Sippy.
r2 object
Interact with R2 objects.
get
Fetch an object from an R2 bucket.
wrangler r2 object get <OBJECT_PATH> [OPTIONS]
OBJECT_PATH
string
- The source object path in the form of
{bucket}/{key}
.
- The source object path in the form of
--local
boolean
- Interact with locally persisted data.
--persist-to
string
- Specify directory for locally persisted data.
put
Create an object in an R2 bucket.
wrangler r2 object put <OBJECT_PATH> [OPTIONS]
OBJECT_PATH
string
- The destination object path in the form of
{bucket}/{key}
.
- The destination object path in the form of
--file
string
- The path of the file to upload. Note you must provide either
--file
or--pipe
.
- The path of the file to upload. Note you must provide either
--pipe
boolean
- Enables the file to be piped in, rather than specified with the
--file
option. Note you must provide either--file
or--pipe
.
- Enables the file to be piped in, rather than specified with the
--content-type
string
- A standard MIME type describing the format of the object data.
--content-disposition
string
- Specifies presentational information for the object.
--content-encoding
string
- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the
Content-Type
header field.
- Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the
--content-language
string
- The language the content is in.
--cache-control
string
- Specifies caching behavior along the request/reply chain.
--expires
string
- The date and time at which the object is no longer cacheable.
--local
boolean
- Interact with locally persisted data.
--persist-to
string
- Specify directory for locally persisted data.
delete
Delete an object in an R2 bucket.
wrangler r2 object delete <OBJECT_PATH> [OPTIONS]
OBJECT_PATH
string
- The destination object path in the form of
{bucket}/{key}
.
- The destination object path in the form of
--local
boolean
- Interact with locally persisted data.
--persist-to
string
- Specify directory for locally persisted data.
secret
Manage the secret variables for a Worker.
put
Create or replace a secret for a Worker.
wrangler secret put <KEY> [OPTIONS]
KEY
string
- The variable name for this secret to be accessed in the Worker.
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
--env
string
- Perform on a specific environment.
When running this command, you will be prompted to input the secret’s value:
$ npx wrangler secret put FOO
? Enter a secret value: › ***🌀 Creating the secret for script worker-app✨ Success! Uploaded secret FOO
The put
command can also receive piped input. For example:
$ echo "-----BEGIN PRIVATE KEY-----\nM...==\n-----END PRIVATE KEY-----\n" | wrangler secret put PRIVATE_KEY
delete
Delete a secret for a Worker.
wrangler secret delete <KEY> [OPTIONS]
KEY
string
- The variable name for this secret to be accessed in the Worker.
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
--env
string
- Perform on a specific environment.
list
List the names of all the secrets for a Worker.
wrangler secret list [OPTIONS]
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
--env
string
- Perform on a specific environment
The following is an example of listing the secrets for the current Worker.
$ npx wrangler secret list
[ { "name": "FOO", "type": "secret_text" }]
secret:bulk
Upload multiple secrets for a Worker at once.
wrangler secret:bulk [<FILENAME>] [OPTIONS]
FILENAME
string
- The JSON file containing key-value pairs to upload as secrets, in the form
{"SECRET_NAME": "secret value", ...}
. - If omitted, Wrangler expects to receive input from
stdin
rather than a file.
- The JSON file containing key-value pairs to upload as secrets, in the form
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
--env
string
- Perform on a specific environment.
The following is an example of uploading secrets from a JSON file redirected to stdin
. When complete, the output summary will show the number of secrets uploaded and the number of secrets that failed to upload.
secrets.json{ "secret-name-1": "secret-value-1", "secret-name-2": "secret-value-2"
}
$ npx wrangler secret:bulk < secrets.json
🌀 Creating the secrets for the Worker "script-name"✨ Successfully created secret for key: secret-name-1...🚨 Error uploading secret for key: secret-name-1✨ Successfully created secret for key: secret-name-2
Finished processing secrets JSON file:✨ 1 secrets successfully uploaded🚨 1 secrets failed to upload
tail
Start a session to livestream logs from a deployed Worker.
wrangler tail <WORKER> [OPTIONS]
WORKER
string
- The name of your Worker or the route the Worker is running on.
--format
“json”|“pretty”
- The format of the log entries.
--status
“ok”|“error”|“canceled”
- Filter by invocation status.
--header
string
- Filter by HTTP header.
--method
string
- Filter by HTTP method.
--sampling-rate
number
- Add a fraction of requests to log sampling rate (between
0
and1
).
- Add a fraction of requests to log sampling rate (between
--search
string
- Filter by a text match in
console.log
messages.
- Filter by a text match in
--ip
(string|“self”)[]
- Filter by the IP address the request originates from. Use
"self"
to show only messages from your own IP.
- Filter by the IP address the request originates from. Use
--version-id
string
- Filter by Worker version.
After starting wrangler tail
, you will receive a live feed of console and exception logs for each request your Worker receives.
If your Worker has a high volume of traffic, the tail might enter sampling mode. This will cause some of your messages to be dropped and a warning to appear in your tail logs. To prevent messages from being dropped, add the options listed above to filter the volume of tail messages.
If sampling persists after using options to filter messages, consider using instant logs.
pages
Configure Cloudflare Pages.
dev
Develop your full-stack Pages application locally.
wrangler pages dev [<DIRECTORY>] [OPTIONS]
DIRECTORY
string
- The directory of static assets to serve.
--local
boolean
- Run on your local machine.
--port
number
- The port to listen on (serve from).
--binding
string[]
- Bind an environment variable or secret (for example,
--binding <VARIABLE_NAME>=<VALUE>
).
- Bind an environment variable or secret (for example,
--kv
string[]
- Binding name of KV namespace to bind (for example,
--kv <BINDING_NAME>
).
- Binding name of KV namespace to bind (for example,
--r2
string[]
- Binding name of R2 bucket to bind (for example,
--r2 <BINDING_NAME>
).
- Binding name of R2 bucket to bind (for example,
--d1
string[]
- Binding name of D1 database to bind (for example,
--d1 <BINDING_NAME>
).
- Binding name of D1 database to bind (for example,
--do
string[]
- Binding name of Durable Object to bind (for example,
--do <BINDING_NAME>=<CLASS>
).
- Binding name of Durable Object to bind (for example,
--live-reload
boolean
- Auto reload HTML pages when change is detected.
--compatibility-flag
string[]
- Runtime compatibility flags to apply.
--compatibility-date
string
- Runtime compatibility date to apply.
--show-interactive-dev-session
boolean
- Show the interactive dev session.
--https-key-path
string
- Path to a custom certificate key.
--https-cert-path
string
- Path to a custom certificate.
project list
List your Pages projects.
wrangler pages project list
project create
Create a new Cloudflare Pages project.
wrangler pages project create <PROJECT_NAME> [OPTIONS]
PROJECT_NAME
string
- The name of your Pages project.
--production-branch
string
- The name of the production branch of your project.
project delete
Delete a Cloudflare Pages project.
wrangler pages project delete <PROJECT_NAME> [OPTIONS]
PROJECT_NAME
string
- The name of the Pages project to delete.
--yes
boolean
- Answer
"yes"
to confirmation prompt.
- Answer
deployment list
List deployments in your Cloudflare Pages project.
wrangler pages deployment list [--project-name <PROJECT_NAME>]
--project-name
string
- The name of the project you would like to list deployments for.
deployment tail
Start a session to livestream logs from your deployed Pages Functions.
wrangler pages deployment tail [<DEPLOYMENT>] [OPTIONS]
DEPLOYMENT
string
- ID or URL of the deployment to tail. Specify by environment if deployment ID is unknown.
--project-name
string
- The name of the project you would like to tail.
--environment
“production”|“preview”
- When not providing a specific deployment ID, specifying environment will grab the latest production or preview deployment.
--format
“json”|“pretty”
- The format of the log entries.
--status
“ok”|“error”|“canceled”
- Filter by invocation status.
--header
string
- Filter by HTTP header.
--method
string
- Filter by HTTP method.
--sampling-rate
number
- Add a percentage of requests to log sampling rate.
--search
string
- Filter by a text match in
console.log
messages.
- Filter by a text match in
--ip
(string|“self”)[]
- Filter by the IP address the request originates from. Use
"self"
to show only messages from your own IP.
- Filter by the IP address the request originates from. Use
After starting wrangler pages deployment tail
, you will receive a live stream of console and exception logs for each request your Functions receive.
deploy
Deploy a directory of static assets as a Pages deployment.
wrangler pages deploy <BUILD_OUTPUT_DIRECTORY> [OPTIONS]
BUILD_OUTPUT_DIRECTORY
string
- The directory of static files to upload. As of Wrangler 3.45.0, this is only required when your Pages project does not have a
wrangler.toml
file. Refer to the Pages Functions configuration guide for more information.
- The directory of static files to upload. As of Wrangler 3.45.0, this is only required when your Pages project does not have a
--project-name
string
- The name of the project you want to deploy to.
--branch
string
- The name of the branch you want to deploy to.
--commit-hash
string
- The SHA to attach to this deployment.
--commit-message
string
- The commit message to attach to this deployment.
--commit-dirty
boolean
- Whether or not the workspace should be considered dirty for this deployment.
publish
Publish a directory of static assets as a Pages deployment.
wrangler pages publish [<DIRECTORY>] [OPTIONS]
queues
Manage your Workers Queues configurations.
create
Create a new Queue.
wrangler queues create <name> [OPTIONS]
name
string
- The name of the queue to create.
--delivery-delay-secs
number
- How long a published message should be delayed for, in seconds. Must be a positive integer.
delete
Delete an existing queue.
wrangler queues delete <name> [OPTIONS]
name
string
- The name of the queue to delete.
list
List all queues in the current account.
wrangler queues list [OPTIONS]
consumer
Manage queue consumer configurations.
consumer add <script-name>
Add a Worker script as a queue consumer.
wrangler queues consumer add <queue-name> <script-name> [OPTIONS]
queue-name
string
- The name of the queue to add the consumer to.
script-name
string
- The name of the Workers script to add as a consumer of the named queue.
--batch-size
number
- Maximum number of messages per batch. Must be a positive integer.
--batch-timeout
number
- Maximum number of seconds to wait to fill a batch with messages. Must be a positive integer.
--message-retries
number
- Maximum number of retries for each message. Must be a positive integer.
--max-concurrency
number
- The maximum number of concurrent consumer invocations that will be scaled up to handle incoming message volume. Must be a positive integer.
--retry-delay-secs
number
- How long a retried message should be delayed for, in seconds. Must be a positive integer.
consumer remove
Remove a consumer from a queue.
wrangler queues consumer remove <queue-name> <script-name>
queue-name
string
- The name of the queue to remove the consumer from.
script-name
string
- The name of the Workers script to remove as the consumer.
login
Authorize Wrangler with your Cloudflare account using OAuth. Wrangler will attempt to automatically open your web browser to login with your Cloudflare account.
If you prefer to use API tokens for authentication, such as in headless or continuous integration environments, refer to Running Wrangler in CI/CD.
wrangler login [OPTIONS]
--scopes-list
string
- List all the available OAuth scopes with descriptions.
--scopes $SCOPES
string
- Allows to choose your set of OAuth scopes. The set of scopes must be entered in a whitespace-separated list,
for example,
$ npx wrangler login --scopes account:read user:read
.
- Allows to choose your set of OAuth scopes. The set of scopes must be entered in a whitespace-separated list,
for example,
If Wrangler fails to open a browser, you can copy and paste the URL generated by wrangler login
in your terminal into a browser and log in.
Use wrangler login
on a remote machine
If you are using Wrangler from a remote machine, but run the login flow from your local browser, you will receive the following error message after logging in:This site can't be reached
.
To finish the login flow, run wrangler login
and go through the login flow in the browser:
$ npx wrangler login
⛅️ wrangler 2.1.6-------------------Attempting to login via OAuth...Opening a link in your default browser: https://dash.cloudflare.com/oauth2/auth?xyz...
The browser login flow will redirect you to a localhost
URL on your machine.
Leave the login flow active. Open a second terminal session. In that second terminal session, use curl
or an equivalent request library on the remote machine to fetch this localhost
URL. Copy and paste the localhost
URL that was generated during the wrangler login
flow and run:
$ curl <LOCALHOST_URL>
logout
Remove Wrangler’s authorization for accessing your account. This command will invalidate your current OAuth token.
wrangler logout
If you are using CLOUDFLARE_API_TOKEN
instead of OAuth, and you can logout by deleting your API token in the Cloudflare dashboard:
- Log in to the Cloudflare dashboard.
- Go to My Profile > API Tokens.
- Select the three-dot menu on your Wrangler token.
- Select Delete.
whoami
Retrieve your user information and test your authentication configuration.
wrangler whoami
versions
Versions are currently in closed beta. Report bugs in GitHub.
upload
Upload a new version of your Worker that is not deployed immediately.
wrangler versions upload [OPTIONS] --experimental-versions
--experimental-versions
string
- Required for
wrangler versions
commands. Can be replaced with--x-versions
.
- Required for
--tag
string
- Add a version tag. Accepts empty string.
--message
string
- Add a version message. Accepts empty string.
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
deploy
Deploy a previously created version of your Worker all at once or create a gradual deployment to incrementally shift traffic to a new version by following an interactive prompt.
wrangler versions deploy [OPTIONS] --experimental-versions
--experimental-versions
string
- Required for
wrangler versions
commands. Can be replaced with--x-versions
.
- Required for
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
list
Retrieve details for the 10 most recent versions. Details include Version ID
, Created on
, Author
, Source
, and optionally, Tag
or Message
.
wrangler versions list [OPTIONS] --experimental-versions
--experimental-versions
string
- Required for
wrangler versions
commands. Can be replaced with--x-versions
.
- Required for
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
view
Retrieve details for the specified version. Details include Version ID
, Created
, Author
, Source
, and optionally, Tag
or Message
.
wrangler versions view [OPTIONS] --experimental-versions
--experimental-versions
string
- Required for
wrangler versions
commands. Can be replaced with--x-versions
.
- Required for
VERSION_ID
string
- The ID of the version you wish to view.
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
triggers
This command is currently in closed beta. Report bugs in GitHub.
deploy
Apply changes to triggers (Routes or domains and Cron Triggers) when using wrangler versions upload
.
wrangler triggers deploy [OPTIONS] --experimental-versions
--experimental-versions
string
- Required for
wrangler versions
commands. Can be replaced with--x-versions
.
- Required for
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
–
deployments
Deployments track the version(s) of your Worker that are actively serving traffic.
view
Retrieve details for the specified deployment, or the latest if no ID is provided. Details include Deployment ID
, Author
, Source
, Created on
, and bindings. Where applicable, details also include rollback information and a Message
if one was provided on a rollback.
wrangler deployments view [OPTIONS]
DEPLOYMENT_ID
string
- The ID of the deployment you wish to view.
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
list
Retrieve details for the 10 most recent deployments. Details include Deployment ID
, Created on
, Author
, Source
, and an indication of which deployment is Active
. Where applicable, details also include rollback information and a Message
if one was provided on a rollback.
wrangler deployments list [OPTIONS]
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
list --experimental-versions
Retrieve details for the 10 most recent deployments. Details include Created on
, Author
, Source
, an optional Message
, and metadata about the Version(s)
in the deployment.
wrangler deployments list [OPTIONS] --experimental-versions
--experimental-versions
string
- Required for version commands. Can be replaced with
--x-versions
.
- Required for version commands. Can be replaced with
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
status
Retrieve details for the most recent deployment. Details include Created on
, Author
, Source
, an optional Message
, and metadata about the Version(s)
in the deployment.
wrangler deployments status --experimental-versions
--experimental-versions
string
- Required for version commands. Can be replaced with
--x-versions
.
- Required for version commands. Can be replaced with
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
rollback
Roll back to a specified version by ID, or to the previous version if no ID is provided. The rollback
command will prompt you for confirmation of the rollback. On confirmation, you will be prompted to provide an optional rollback message.
There are limitations on which versions you can rollback to. Refer to Rollbacks Limits for more information.
rollback
wrangler rollback [<DEPLOYMENT_ID>] [OPTIONS]
DEPLOYMENT_ID
string
- The ID of the deployment you wish to roll back to.
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
--message
string
- Add message for rollback. Accepts empty string. When specified, interactive prompts for rollback confirmation and message are skipped.
rollback --experimental-versions
wrangler rollback [<VERSION_ID>] [OPTIONS] --experimental-versions
--experimental-versions
string
- Required for version commands. Can be replaced with
--x-versions
.
- Required for version commands. Can be replaced with
VERSION_ID
string
- The ID of the version you wish to roll back to. If not supplied, the
rollback
command defaults to the version uploaded before the latest version.
- The ID of the version you wish to roll back to. If not supplied, the
--name
string
- Perform on a specific Worker rather than inheriting from
wrangler.toml
.
- Perform on a specific Worker rather than inheriting from
--message
string
- Add message for rollback. Accepts empty string. When specified, interactive prompts for rollback confirmation and message are skipped.
dispatch namespace
list
List all dispatch namespaces.
wrangler dispatch-namespace list
get
Get information about a dispatch namespace.
wrangler dispatch-namespace get <NAME>
NAME
string
- The name of the dispatch namespace to get details about.
create
Create a dispatch namespace.
wrangler dispatch-namespace create <NAME>
NAME
string
- The name of the dispatch namespace to create.
delete
Delete a dispatch namespace.
wrangler dispatch-namespace get <NAME>
NAME
string
- The name of the dispatch namespace to delete.
rename
Rename a dispatch namespace.
wrangler dispatch-namespace get <OLD_NAME> <NEW_NAME>
OLD_NAME
string
- The previous name of the dispatch namespace.
NEW_NAME
string
- The new name of the dispatch namespace.
mtls-certificate
Manage client certificates used for mTLS connections in subrequests.
These certificates can be used in mtls_certificate
bindings, which allow a Worker to present the certificate when establishing a connection with an origin that requires client authentication (mTLS).
upload
Upload a client certificate.
wrangler mtls-certificate upload --cert <PATH> --key <PATH> [OPTIONS]
--cert
string
- A path to the TLS certificate to upload. Certificate chains are supported.
--key
string
- A path to the private key to upload.
--name
string
- The name assigned to the mTLS certificate at upload.
The following is an example of using the upload
command to upload an mTLS certificate.
$ npx wrangler mtls-certificate upload --cert cert.pem --key key.pem --name my-origin-cert
Uploading mTLS Certificate my-origin-cert...Success! Uploaded mTLS Certificate my-origin-certID: 99f5fef1-6cc1-46b8-bd79-44a0d5082b8dIssuer: CN=my-secured-origin.com,OU=my-team,O=my-org,L=San Francisco,ST=California,C=USExpires: 1/01/2025
You can then add this certificate as a binding in your wrangler.toml
:
mtls_certificates = [ { binding = "MY_CERT", certificate_id = "99f5fef1-6cc1-46b8-bd79-44a0d5082b8d" }
]
Note that the certificate and private keys must be in separate (typically .pem
) files when uploading.
list
List mTLS certificates associated with the current account ID.
wrangler mtls-certificate list
The following is an example of using the list
command to upload an mTLS certificate.
$ npx wrangler mtls-certificate list
ID: 99f5fef1-6cc1-46b8-bd79-44a0d5082b8dName: my-origin-certIssuer: CN=my-secured-origin.com,OU=my-team,O=my-org,L=San Francisco,ST=California,C=USCreated on: 1/01/2023Expires: 1/01/2025
ID: c5d004d1-8312-402c-b8ed-6194328d5cbeIssuer: CN=another-origin.com,OU=my-team,O=my-org,L=San Francisco,ST=California,C=USCreated on: 1/01/2023Expires: 1/01/2025
delete
Delete a client certificate.
wrangler mtls-certificate delete {--id <ID|--name <NAME>}
--id
string
- The ID of the mTLS certificate.
--name
string
- The name assigned to the mTLS certificate at upload.
The following is an example of using the delete
command to delete an mTLS certificate.
$ npx wrangler mtls-certificate delete --id 99f5fef1-6cc1-46b8-bd79-44a0d5082b8d
Are you sure you want to delete certificate 99f5fef1-6cc1-46b8-bd79-44a0d5082b8d (my-origin-cert)? [y/n]yesDeleting certificate 99f5fef1-6cc1-46b8-bd79-44a0d5082b8d...Deleted certificate 99f5fef1-6cc1-46b8-bd79-44a0d5082b8d successfully
types
Generate types from bindings and module rules in configuration.
wrangler types [<PATH>] [OPTIONS]
PATH
string
- The path to where the declaration file for your Worker will be written.
- The path to the declaration file must have a
d.ts
extension.
--env-interface
string
- The name of the interface to generate for the environment object.
- Not valid if the Worker uses the Service Worker syntax.