Bun入门指南

第一个bun程序

Preview
  • 第一个bun程序
  • 开启watch和热重载模式

第一个bun程序

创建一个index.ts文件,写入以下代码

//index.ts
console.log("Hello Bun!");

通过bun run命令运行index.ts文件 image.png

修改index.ts文件的内容,确保TypeScript 可以开箱即用。

//index.ts
const greeting = (message: string) => {
  console.log(message);
};
greeting('Hello World!')

执行后,终端上会显示“Hello World!”,我们确认 TypeScript 也可以在创建项目后立即使用。 image.png

开启watch和热重载模式

在watch模式下运行项目,它会检测文件更新。

bun --watch index.ts
bun --hot index.ts