diff options
author | 2022-05-04 09:02:25 -0700 | |
---|---|---|
committer | 2022-05-04 09:02:25 -0700 | |
commit | 7b125c9731815452c62fbfb69b241dc9e4eb7c29 (patch) | |
tree | c1def5d8c43d582952310f54408755feb5eb3178 | |
parent | 0e3df2552641c3f6cf1fd2ab2ee11207e49cc181 (diff) | |
download | bun-7b125c9731815452c62fbfb69b241dc9e4eb7c29.tar.gz bun-7b125c9731815452c62fbfb69b241dc9e4eb7c29.tar.zst bun-7b125c9731815452c62fbfb69b241dc9e4eb7c29.zip |
Update README.md
-rw-r--r-- | README.md | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 |