bun icon indicating copy to clipboard operation
bun copied to clipboard

Use the `"engines"` field to automatically replace node with bun in the shebang

Open Jarred-Sumner opened this issue 3 months ago • 5 comments

Currently, it is difficult to publish CLIs to npm which can transparently run in either node or bun.

Thus far, Bun has attempted to address that in two ways:

  1. When node is not in path,bun <any-executable> and bun run <any-executable> automatically adds a temporary node to path symlinked to Bun, which makes #!/usr/bin/env node still work when Node is not installed
  2. The --bun flag forces the behavior of ^ even when node is in path - bun --bun <any-executable>

This doesn't fix the case where <any-executable> is installed globally, you don't have node installed and you want to run it without prefixing bun.

While some packages are happy to be bun-only, for many packages it doesn't make sense today to limit their potential users to only bun.

tsc and turbo both seem to work in bun, there's no reason it doesn't run them using bun when bun is installed

This proposal suggests the following:

When using bun install and "bun" exists in the "engines" field in package.json in an installed dependency, we automatically inject and replace the #!/usr/bin/env node shebang with #!/usr/bin/env bun in all bins with a javascript-like file extension.

{
  "name": "my-cli-tool",
  "version": "1.0.0",
  "engines": {
    "node": "*",
    "bun": "*"
  },
  "bin": {
    "my-cli": "./bin/my-cli.js"
  }
}

This would let package authors publish packages for both node and bun that lets the user choose which runtime to use (implicitly by choosing bun with bun install, or node with other package managers). This has the downside that yarn v1 will report a warning about an unknown engine (only yarn v1 as far as I can tell), but that's probably okay (the "vscode" engine used by vscode extensions has the same issue)

Another approach involves the "exports" field, but the npm registry api does not expose that information in the abbreviated version object (nor should it, imo)

Fixes #9334 Blocked on https://github.com/oven-sh/bun/issues/5846

Jarred-Sumner avatar Mar 10 '24 12:03 Jarred-Sumner

I like this proposal, but I don't like that it will force every CLI that is compatible to bun to add this field. It should not be required for packages to alter any of their code for bun to properly run them. This should be used by projects intending to support multiple runtimes.

I think this shebang replacement #!/usr/bin/env node -> #!/usr/bin/env bun should just always be done if node is not installed. Later on, this should be the default along with --bun (i think we should soon make this a feature flag or bunfig option to set this default enabled)

Also, it should be noted that this specific case is not an issue on Windows, as the shim does what I describe when node is not available (see #8795). Though, typing this up, replacing to bun is incorrect; it should be hitting our .RunAsNodeCommand for edge cases. We dont have a great way to expose this outside of setting the binary name to node.

As a first step, we should document this and make bun init add this engine definition there.

paperdave avatar Mar 12 '24 19:03 paperdave

an alternative solution would maybe to allow running scripts without a shebang at all?
and make the default behaviour "run with bun" if there is no shebang in the script

currently it fails with Failed to run "scriptname" due to error InvalidExe if there's no shebang, while npx happily just runs it with node

kunokareal avatar Mar 17 '24 16:03 kunokareal

while npx happily just runs it with node

i didn't realize that is even allowed. this feels more like a separate bug to me, and it should be implemented in addition to the other ideas.

paperdave avatar Mar 22 '24 04:03 paperdave

This would be handy for turbo. repro (should also work w/ docker):

$ podman run -it oven/bun:alpine sh
$ bun i -g turbo
$ /root/.bun/bin/turbo
env: can't execute 'node': No such file or directory

Linking this issue also https://github.com/vercel/turbo/issues/7688

arlyon avatar Mar 26 '24 14:03 arlyon

@Jarred-Sumner should we expect for engines: { bun: >x.x } in package.json to be working already or is this part of the considered change?

frytg avatar Apr 09 '24 13:04 frytg