Skip to content

Bun.main 속성에는 현재 진입점의 절대 경로가 포함되어 있습니다.

ts
console.log(Bun.main);
ts
import "./foo.ts";

출력된 경로는 bun run 으로 실행된 파일의 경로입니다.

sh
bun run index.ts
txt
/path/to/index.ts
sh
bun run foo.ts
txt
/path/to/foo.ts

더 유용한 유틸리티는 문서 > API > 유틸리티 를 참조하세요.

Bun by www.bunjs.com.cn 편집