---
title: Commands
description: Create, develop, and deploy your Cloudflare Workers with Wrangler commands.
image: https://edgetunnel-b2h.pages.dev/dev-products-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://edgetunnel-b2h.pages.dev/workers/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Commands

[Wrangler](https://edgetunnel-b2h.pages.dev/workers/wrangler/) offers a number of commands to manage your Cloudflare Workers.

## Workers commands

The core Wrangler commands for creating, developing, and deploying Workers are on the [Workers commands page](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/workers/). This includes `wrangler dev`, `wrangler deploy`, `wrangler versions`, and more.

## All commands

* [ Artifacts ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/artifacts/)
* [ Browser ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/browser/)
* [ Certificates ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/certificates/)
* [ Containers ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/containers/)
* [ D1 ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/d1/)
* [ Flagship ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/flagship/)
* [ General commands ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/general/)
* [ Hyperdrive ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/hyperdrive/)
* [ KV ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/kv/)
* [ Pages ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/pages/)
* [ Pipelines ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/pipelines/)
* [ Queues ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/queues/)
* [ R2 ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/r2/)
* [ Secrets Store ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/secrets-store/)
* [ Tunnel ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/tunnel/)
* [ Vectorize ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/vectorize/)
* [ VPC ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/vpc/)
* [ Workers ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/workers/)
* [ Workers for Platforms ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/workers-for-platforms/)
* [ Workflows ](https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/workflows/)

## How to run Wrangler commands

```txt
wrangler <COMMAND> <SUBCOMMAND> [PARAMETERS] [OPTIONS]
```

Since Cloudflare recommends [installing Wrangler locally](https://edgetunnel-b2h.pages.dev/workers/wrangler/install-and-update/) in your project (rather than globally), the way to run Wrangler will depend on your specific setup and package manager.

 npm  yarn  pnpm 

```
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:

```json
{
  ...
  "scripts": {
    "deploy": "wrangler deploy",
    "dev": "wrangler dev"
  }
  ...
}
```

You can then run them using your package manager of choice:

 npm  yarn  pnpm 

```
npm run deploy
```

```
yarn run deploy
```

```
pnpm run deploy
```

```json
{"@context":"https://schema.org","@type":"WebPage","@id":"https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/#page","headline":"Commands - Wrangler · Cloudflare Workers docs","description":"Create, develop, and deploy your Cloudflare Workers with Wrangler commands.","url":"https://edgetunnel-b2h.pages.dev/workers/wrangler/commands/","inLanguage":"en","image":"https://edgetunnel-b2h.pages.dev/dev-products-preview.png","dateModified":"2026-04-23","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://edgetunnel-b2h.pages.dev/#website","name":"Cloudflare Docs","url":"https://edgetunnel-b2h.pages.dev/"}}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"/directory/","name":"Directory"}},{"@type":"ListItem","position":2,"item":{"@id":"/workers/","name":"Workers"}},{"@type":"ListItem","position":3,"item":{"@id":"/workers/wrangler/","name":"Wrangler"}},{"@type":"ListItem","position":4,"item":{"@id":"/workers/wrangler/commands/","name":"Commands"}}]}
```
