Skip to content

Commit

Permalink
docs(create-discord-bot): support bun in create-discord-bot (#9798)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhacks committed Aug 28, 2023
1 parent 85d03a3 commit 7157748
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 1 deletion.
Expand Up @@ -67,6 +67,10 @@ yarn init
pnpm init; pnpm pkg set type="module"
```

```sh bun
bun init
```

</CH.Code>

This is the next command you'll be running. This command creates a _`package.json`_ file for you, which will keep track of the dependencies your project uses, as well as other info.
Expand All @@ -93,6 +97,10 @@ yarn add discord.js
pnpm add discord.js
```

```sh bun
bun add discord.js
```

</CH.Code>

And that's it! With all the necessities installed, you're almost ready to start coding your bot.
Expand Down
Expand Up @@ -77,6 +77,10 @@ yarn add dotenv
pnpm add dotenv
```

```sh bun
# Bun automatically reads .env files
```

</CH.Code>

<CH.Code lineNumbers={false} rows={7}>
Expand Down
Expand Up @@ -27,6 +27,10 @@ yarn remove @discordjs/builders @discordjs/formatters @discordjs/rest discord-ap
pnpm remove @discordjs/builders @discordjs/formatters @discordjs/rest discord-api-types
```

```sh bun
bun remove @discordjs/builders @discordjs/formatters @discordjs/rest discord-api-types
```

</CH.Code>

## Breaking Changes
Expand Down
9 changes: 8 additions & 1 deletion packages/create-discord-bot/README.md
Expand Up @@ -16,7 +16,14 @@

## About

`npx create-discord-bot ./your/chosen/directory/`. It's as easy as that to create a simple Discord bot to begin your journey with the Discord API.
It's easy to create a simple Discord bot to begin your journey with the Discord API.

```sh
npm create discord-bot ./your/chosen/directory
yarn create discord-bot ./your/chosen/directory
pnpm create discord-bot ./your/chosen/directory
bunx create-discord-bot ./your/chosen/directory
```

## Links

Expand Down
4 changes: 4 additions & 0 deletions packages/create-discord-bot/src/helpers/packageManager.ts
Expand Up @@ -31,6 +31,10 @@ export function resolvePackageManager(): PackageManager {
return 'pnpm';
}

if (npmConfigUserAgent.startsWith('bun')) {
return 'bun';
}

console.error(
picocolors.yellow(
`Detected an unsupported package manager (${npmConfigUserAgent}). Falling back to ${DEFAULT_PACKAGE_MANAGER}.`,
Expand Down
2 changes: 2 additions & 0 deletions packages/discord.js/README.md
Expand Up @@ -35,6 +35,7 @@ discord.js is a powerful [Node.js](https://nodejs.org) module that allows you to
npm install discord.js
yarn add discord.js
pnpm add discord.js
bun add discord.js
```

### Optional packages
Expand All @@ -52,6 +53,7 @@ Install discord.js:
npm install discord.js
yarn add discord.js
pnpm add discord.js
bun add discord.js
```

Register a slash command against the Discord API:
Expand Down
1 change: 1 addition & 0 deletions packages/formatters/README.md
Expand Up @@ -29,6 +29,7 @@
npm install @discordjs/formatters
yarn add @discordjs/formatters
pnpm add @discordjs/formatters
bun add @discordjs/formatters
```

## Example usage
Expand Down
1 change: 1 addition & 0 deletions packages/next/README.md
Expand Up @@ -22,6 +22,7 @@
npm install @discordjs/next
yarn add @discordjs/next
pnpm add @discordjs/next
bun add @discordjs/next
```

## Links
Expand Down
1 change: 1 addition & 0 deletions packages/proxy/README.md
Expand Up @@ -29,6 +29,7 @@
npm install @discordjs/proxy
yarn add @discordjs/proxy
pnpm add @discordjs/proxy
bun add @discordjs/proxy
```

## Links
Expand Down
2 changes: 2 additions & 0 deletions packages/rest/README.md
Expand Up @@ -31,6 +31,7 @@ Note: native fetch (not recommended) is unavailable in this node version, either
npm install @discordjs/rest
yarn add @discordjs/rest
pnpm add @discordjs/rest
bun add @discordjs/rest
```

## Examples
Expand All @@ -41,6 +42,7 @@ Install all required dependencies:
npm install @discordjs/rest discord-api-types
yarn add @discordjs/rest discord-api-types
pnpm add @discordjs/rest discord-api-types
bun add @discordjs/rest discord-api-types
```

Send a basic message:
Expand Down
1 change: 1 addition & 0 deletions packages/util/README.md
Expand Up @@ -26,6 +26,7 @@
npm install @discordjs/util
yarn add @discordjs/util
pnpm add @discordjs/util
bun add @discordjs/util
```

## Links
Expand Down
1 change: 1 addition & 0 deletions packages/voice/README.md
Expand Up @@ -38,6 +38,7 @@
npm install @discordjs/voice
yarn add @discordjs/voice
pnpm add @discordjs/voice
bun add @discordjs/voice
```

## Dependencies
Expand Down
1 change: 1 addition & 0 deletions packages/ws/README.md
Expand Up @@ -29,6 +29,7 @@
npm install @discordjs/ws
yarn add @discordjs/ws
pnpm add @discordjs/ws
bun add @discordjs/ws
```

### Optional packages
Expand Down

1 comment on commit 7157748

@vercel
Copy link

@vercel vercel bot commented on 7157748 Aug 28, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.