aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-05-04 09:02:25 -0700
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-05-04 09:02:25 -0700
commit7b125c9731815452c62fbfb69b241dc9e4eb7c29 (patch)
treec1def5d8c43d582952310f54408755feb5eb3178
parent0e3df2552641c3f6cf1fd2ab2ee11207e49cc181 (diff)
downloadbun-7b125c9731815452c62fbfb69b241dc9e4eb7c29.tar.gz
bun-7b125c9731815452c62fbfb69b241dc9e4eb7c29.tar.zst
bun-7b125c9731815452c62fbfb69b241dc9e4eb7c29.zip
Update README.md
-rw-r--r--README.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0a7bdea73..9e903170b 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,7 @@ If using Linux, kernel version 5.6 or higher is strongly recommended, but the mi
- [`bun completions`](#bun-completions)
- [`Bun.serve`](#bunserve---fast-http-server)
- [`Bun.write`](#bunwrite--optimizing-io)
+ - [`bun:ffi` (Foreign functions interface)](#bunffi-foreign-functions-interface)
- [`Bun.Transpiler`](#buntranspiler)
- [`transformSync`](#buntranspilertransformsync)
- [`transform`](#buntranspilertransform)
@@ -1553,8 +1554,6 @@ await Bun.write("output.txt", Bun.file("input.txt"));
`bun:ffi` lets you efficiently call native libraries from JavaScript. It works with languages that support the C ABI (Zig, Rust, C/C++, C#, Nim, Kotlin, etc).
-Note: this is available in the next version of Bun (v0.0.79), which is not released yet.
-
This snippet prints sqlite3's version number:
```ts