-
Notifications
You must be signed in to change notification settings - Fork 129
feat: bun related docs (@stonega) #1129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
MasedMSD
wants to merge
28
commits into
main
Choose a base branch
from
bun-docs
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
53c1efe
feat: bun related docs (@stonega)
MasedMSD 3b659a4
Merge branch 'main' into bun-docs
KnorpelSenf 0af69fa
Merge branch 'main' into bun-docs
KnorpelSenf fe5473b
Changed `index.ts` to `bot.ts`
MasedMSD 378f672
Fixed instruction in guide/introduction.md
MasedMSD 6da79ae
fixed lint and fmt
MasedMSD 44e7fe2
fix bad indentation
KnorpelSenf bd2f6fd
Merge branch 'main' into bun-docs
LWJerri 17acb0d
Merge branch 'main' into bun-docs
KnorpelSenf 7bd73c7
Apply suggestions from code review
MasedMSD 3106c3b
Init Typescript config
MasedMSD eb62f5b
Merge branch 'main' into bun-docs
MasedMSD f77d821
Merge branch 'main' into bun-docs
MasedMSD 2b7d73b
Merge branch 'main' into bun-docs
KnorpelSenf 28af369
Mention support of BunFile
MasedMSD 1900f63
Merge branch 'main' into bun-docs
KnorpelSenf ac40ea0
Merge branch 'main' into bun-docs
MasedMSD c5ed710
Merge branch 'main' into bun-docs
LWJerri 4c27314
Merge branch 'main' into bun-docs
LWJerri 0441dff
Merge branch 'main' into bun-docs
LWJerri 4c51b10
Merge branch 'main' into bun-docs
LWJerri 6d19e4c
Merge branch 'main' into bun-docs
LWJerri 9fc82a1
Merge branch 'main' into bun-docs
LWJerri 38d4ac8
Merge branch 'main' into bun-docs
LWJerri b437df3
Merge branch 'main' into bun-docs
LWJerri bef05f4
Merge branch 'main' into bun-docs
LWJerri 0cad7d3
Merge branch 'main' into bun-docs
LWJerri 3d6240a
Merge branch 'main' into bun-docs
LWJerri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -181,12 +181,20 @@ new InputFile("/path/to/file"); | |||||
| new InputFile(await Deno.open("/path/to/file")); | ||||||
| ``` | ||||||
|
|
||||||
| ```ts [Bun] | ||||||
| // Send a local file. | ||||||
| new InputFile("/path/to/file"); | ||||||
|
|
||||||
| // Send a `BunFile` instance. | ||||||
| new InputFile(await Bun.file("/path/to/file").bytes()); | ||||||
| ``` | ||||||
|
|
||||||
| ::: | ||||||
|
|
||||||
| #### Uploading Raw Binary Data | ||||||
|
|
||||||
| You can also send a `Buffer` object, or an iterator that yields `Buffer` objects. | ||||||
| On Deno, you can send `Blob` objects, too. | ||||||
| On Deno and Bun you can send `Blob` objects, too. | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
|
||||||
| ::: code-group | ||||||
|
|
||||||
|
|
@@ -215,6 +223,20 @@ new InputFile(function* () { | |||||
| }); | ||||||
| ``` | ||||||
|
|
||||||
| ```ts [Bun] | ||||||
| // Send a blob. | ||||||
| const blob = new Blob("ABC", { type: "text/plain" }); | ||||||
| new InputFile(blob); | ||||||
| // Send a buffer or a byte array. | ||||||
| const buffer = Uint8Array.from([65, 66, 67]); | ||||||
| new InputFile(buffer); // "ABC" | ||||||
| // Send an iterable. | ||||||
| new InputFile(function* () { | ||||||
| // "ABCABCABCABC" | ||||||
| for (let i = 0; i < 4; i++) yield buffer; | ||||||
| }); | ||||||
| ``` | ||||||
|
|
||||||
| ::: | ||||||
|
|
||||||
| #### Downloading and Reuploading a File | ||||||
|
|
||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.