设置环境变量
Node.js 使用dotenv库来使用环境变量,但使用Bun,你可以使用环境变量,而无需使用任何其他库。
创建 .env
文件并设置环境变量 PORT。
//.env
PORT=3000
在index.ts
文件中使用环境变量时,请在process.env
后面指定环境变量的名称。
//index.ts
import express from 'express'
const app = express()
// const port = 3000
const port = process.env.PORT
app.get('/',(req,res)=> res.send('Hello World!'))
app.listen(port,()=>console.log(`app listening on port ${port}!`))
除了process.env
之外,还可以使用Bun.env
。
//index.ts
const port = Bun.env.PORT;