Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,7 @@
```bash
npx speed-cloudflare-cli
```

```bash
mise use npm:speed-cloudflare-cli
Comment on lines +26 to +28
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Thanks for adding mise usage instructions. I have a couple of suggestions to improve them:

  • It would be clearer to add a short introductory sentence to explain that this is an alternative way to run the tool.
  • The mise use command is not a direct equivalent of npx. mise use only makes the tool available in the current shell, requiring the user to run speed-cloudflare-cli as a second step. For a one-shot execution similar to npx, mise x is the recommended command.

My suggestion below applies both of these changes.

Suggested change
```bash
mise use npm:speed-cloudflare-cli
Or, using [mise](https://mise.jdx.dev/):
```bash
mise x -- npm:speed-cloudflare-cli

```