将 Node.js 应用部署到 Vercel
使用加密的 .env.vault 文件将 Node.js 应用部署到 Vercel。
在 GitHub 上找到此指南的完整 代码示例。
初始设置
创建一个 index.js
文件(如果尚未创建)。
index.js
const PORT = process.env.PORT || 3000
const http = require('http')
const server = http.createServer((req, res) => {
res.statusCode = 200
res.setHeader('Content-Type', 'text/plain')
res.end(`Hello ${process.env.HELLO}`)
})
server.listen(PORT, () => {
console.log(`Server running on port:${PORT}/`)
})
添加 vercel.json
文件。
vercel.json
{
"version": 2,
"builds": [
{
"src": "index.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "index.js"
}
]
}
添加 .vercelignore
文件。
.vercelignore
.env*
!.env.vault
将这些更改提交到代码并部署到 Vercel。
npx vercel@latest deploy --prod
部署后,您的应用将显示“Hello undefined”,因为它还没有访问环境变量的方法。我们接下来将解决这个问题。
安装 dotenv
安装 dotenv
。
npm install dotenv --save # Requires dotenv >= 16.1.0
在项目的根目录中创建一个 .env
文件。
.env
# .env
HELLO="World"
尽早地导入并配置 dotenv。
index.js
// index.js
require('dotenv').config()
console.log(process.env) // remove this after you've confirmed it is working
const PORT = process.env.PORT || 3000
const http = require('http')
...
尝试在本地运行它。
node index.js
{
...
HELLO: 'World'
}
Server running on port:3000/
完美。process.env
现在包含您在 .env
文件中定义的键值对。
这涵盖了本地开发。接下来,我们将解决生产问题。
构建 .env.vault
推送最新的 .env
文件更改并编辑您的生产机密。 了解有关同步的更多信息
npx dotenv-vault@latest push
npx dotenv-vault@latest open production
使用 UI 为每个环境配置这些机密。
然后构建加密的 .env.vault
文件。
npx dotenv-vault@latest build
其内容应类似于以下内容。
.env.vault
#/-------------------.env.vault---------------------/
#/ cloud-agnostic vaulting standard /
#/ [how it works](https://dotenv.org/env-vault) /
#/--------------------------------------------------/
# development
DOTENV_VAULT_DEVELOPMENT="/HqNgQWsf6Oh6XB9pI/CGkdgCe6d4/vWZHgP50RRoDTzkzPQk/xOaQs="
DOTENV_VAULT_DEVELOPMENT_VERSION=2
# production
DOTENV_VAULT_PRODUCTION="x26PuIKQ/xZ5eKrYomKngM+dO/9v1vxhwslE/zjHdg3l+H6q6PheB5GVDVIbZg=="
DOTENV_VAULT_PRODUCTION_VERSION=2
设置 DOTENV_KEY
获取您的生产 DOTENV_KEY
。
npx dotenv-vault@latest keys production
# outputs: dotenv://:[email protected]/vault/.env.vault?environment=production
使用 CLI 在 Vercel 上设置 DOTENV_KEY
。
npx vercel@latest env add DOTENV_KEY
? What’s the value of DOTENV_KEY? dotenv://:[email protected]/vault/.env.vault?environment=production
✅ Added Environment Variable DOTENV_KEY to Project nodejs-vercel [94ms]
或者使用 Vercel 的 UI。
部署
安全地将这些更改提交到代码并部署。
就是这样!在部署时,您的 .env.vault
文件将被解密,其生产机密将作为环境变量注入 – 恰逢其时。
您已成功使用新的 .env.vault 标准来加密和部署您的机密。这比将机密分散到多个第三方平台和工具中要安全得多。无论何时需要添加或更改机密,只需重新构建您的 .env.vault 文件并重新部署。