第一个bun程序
创建一个index.ts
文件,写入以下代码
//index.ts
console.log("Hello Bun!");
通过bun run
命令运行index.ts
文件
修改index.ts
文件的内容,确保TypeScript 可以开箱即用。
//index.ts
const greeting = (message: string) => {
console.log(message);
};
greeting('Hello World!')
执行后,终端上会显示“Hello World!”,我们确认 TypeScript 也可以在创建项目后立即使用。
开启watch和热重载模式
在watch模式下运行项目,它会检测文件更新。
bun --watch index.ts
bun --hot index.ts