# wrangler **Repository Path**: mirrors_inikulin/wrangler ## Basic Information - **Project Name**: wrangler - **Description**: 🀠 wrangle your cloudflare workers - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-09-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🀠 wrangler ![Banner](/banner.png) [![crates.io](https://meritbadge.herokuapp.com/wrangler)](https://crates.io/crates/wrangler)   [![Build Status](https://dev.azure.com/ashleygwilliams/wrangler/_apis/build/status/cloudflare.wrangler?branchName=master)](https://dev.azure.com/ashleygwilliams/wrangler/_build/latest?definitionId=1&branchName=master) `wrangler` is a CLI tool designed for folks who are interested in using [Cloudflare Workers](https://workers.cloudflare.com/). ![Wrangler Demo](/wrangler-demo.gif) ## Installation You have many options to install wrangler! ### Install with `npm` ```bash npm i @cloudflare/wrangler -g ``` ### Install with `cargo` ```bash cargo install wrangler ``` If you don't have `cargo` or `npm` installed, you will need to follow these [additional instructions](https://developers.cloudflare.com/workers/tooling/wrangler/install/). ## Updating For information regarding updating Wrangler, click [here](https://workers.cloudflare.com/docs/quickstart/updating-the-cli/). ## Getting Started Once you have installed Wrangler, spinning up and deploying your first Worker is easy! ```console $ wrangler generate my-worker $ cd my-worker # update your wrangler.toml with your Cloudflare Account ID $ wrangler config $ wrangler publish ``` ## πŸŽ™οΈ Top Level Commands ### πŸ‘― `generate` Scaffold a project, including boilerplate code for a Rust library and a Cloudflare Worker. ```bash wrangler generate