如何隐藏连接到数据库的 URI

发布于 2025-01-16 18:51:29 字数 374 浏览 1 评论 0 原文

我开始学习 NodeJS 和 Mongodb,现在我想在 GitHub 上上传我的项目,但不知道如何隐藏连接数据库的链接。应该这样做吗?

mongoose.connect('mongodb+srv://howToHideThisInfo?:[电子邮件受保护]/database?retryWrites=true&w=majority')

I am started learn NodeJS and Mongodb and now I want to upload my project on GitHub, but don`t know how to hide link for connect to database. And should it be done?

mongoose.connect('mongodb+srv://howToHideThisInfo?:[email protected]/database?retryWrites=true&w=majority')

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆伤 2025-01-23 18:51:29

您可以将 URI 放入文件中,然后将该文件添加到 .gitignore 中,并且可以使用 process.env 变量,更多信息请参见 Process.env。您可以在启动节点应用程序时将变量传递为 USER_ID=239482 USER_KEY=foobar node app.js ,并将要使用它们的代码更新为 process.env.USER_ID >。所以你的 URI 代码将如下所示:

'mongodb+srv://'+process.env.NAME+':'+process.env.PASSWORD+'@cluster0.ta9wa.mongodb.net/database?retryWrites=true&w=majority'

You can put the URI in a file and then add that file to .gitignore and you can use process.env variables, more on them here Process.env. You can pass the variables when starting the node app as USER_ID=239482 USER_KEY=foobar node app.js and update the code where you want to use them as process.env.USER_ID. So your URI code would look like so:

'mongodb+srv://'+process.env.NAME+':'+process.env.PASSWORD+'@cluster0.ta9wa.mongodb.net/database?retryWrites=true&w=majority'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文