|
|
|
|
|
by nufflee
1020 days ago
|
|
> * Vendor-locked-in with proprietary APIs like Bun.serve, Bun.file, etc. What does this mean? Every JS runtime (node, deno, bun etc.) has its own set of APIs and they are generally not cross-compatible. The code for all the Bun APIs is open source so I'm not sure what makes them proprietary. > You can call JS in Bun, but you cannot call Bun APIs in JS Bad use of terminology. JS is the language, JavaScript/ECMAScript, and every JS runtime (node, bun, deno etc.) is using it. So you definitely can call Bun APIs in JS. |
|