gpt4 book ai didi

node.js - Heroku 错误 : Cannot find module './config/keys'

转载 作者:搜寻专家 更新时间:2023-10-31 23:50:47 25 4
gpt4 key购买 nike

我部署了一个 Nodejs 应用程序,到目前为止它的后端到 Heroku。我在浏览器中收到应用程序错误。当我运行 heroku logs 时,我看到了这个错误:

Error: Cannot find module './config/keys'

所以我运行了一个 heroku run 'ls -al' 并且我看到了这个:

Running ls -al on ⬢ murmuring-temple-46226... up, run.3327 (Free)
total 284
drwx------ 8 u6811 dyno 4096 Apr 21 11:41 .
drwxr-xr-x 15 root root 4096 Apr 18 13:09 ..
-rw------- 1 u6811 dyno 21 Apr 21 11:37 .gitignore
drwx------ 3 u6811 dyno 4096 Apr 21 11:37 .heroku
drwx------ 2 u6811 dyno 4096 Apr 21 11:37 .profile.d
-rw------- 1 u6811 dyno 0 Apr 21 11:37 @1
-rw------- 1 u6811 dyno 574 Apr 21 11:37 index.js
drwx------ 2 u6811 dyno 4096 Apr 21 11:37 models
drwx------ 261 u6811 dyno 12288 Apr 21 11:38 node_modules
-rw------- 1 u6811 dyno 235090 Apr 21 11:37 package-lock.json
-rw------- 1 u6811 dyno 565 Apr 21 11:37 package.json
drwx------ 2 u6811 dyno 4096 Apr 21 11:37 routes
drwx------ 2 u6811 dyno 4096 Apr 21 11:37 services

我确实看到我的 config 文件夹不在顶部的文件和文件夹列表中,但这可能是因为在我的 .gitignore 文件中,我有它所以它会忽略 keys.js 文件,或者可能是我在我的代码库中错误地引用了它?

这就是我在 index.js 中的要求:

const express = require('express');
const mongoose = require('mongoose');
const cookieSession = require('cookie-session');
const passport = require('passport');
const keys = require('./config/keys');
require('./models/User');
require('./services/passport');

mongoose.connect(keys.mongoURI);

const app = express();

app.use(
cookieSession({
maxAge: 30 * 24 * 60 * 60 * 1000,
keys: [keys.cookieKey]
})
);
app.use(passport.initialize());
app.use(passport.session());

require('./routes/authRoutes')(app);

const PORT = process.env.PORT || 5000;
app.listen(PORT);

这就是我在 services/passport.js 中引用它的方式:

const passport = require('passport');
const GoogleStrategy = require('passport-google-oauth20').Strategy;
const mongoose = require('mongoose');
const keys = require('../config/keys');

const User = mongoose.model('users');

passport.serializeUser((user, done) => {
done(null, user.id);
});

passport.deserializeUser((id, done) => {
User.findById(id).then(user => {
done(null, user);
});
});

// passport.use() is a generic register to make Passport
// aware of new strategy
// creates a new instance to authenticate users
passport.use(
new GoogleStrategy(
{
clientID: keys.googleClientID,
clientSecret: keys.googleClientSecret,
callbackURL: '/auth/google/callback'
},
(accessToken, refreshToken, profile, done) => {
User.findOne({ googleId: profile.id }).then(existingUser => {
if (existingUser) {
// we already have a record with given profile id
done(null, existingUser);
} else {
// we dont have a user record with this id, make a new record
new User({ googleId: profile.id })
.save()
.then(user => done(null, user));
}
});
}
)
);

使用包含 API key 和其他凭据的 config/keys.js 文件夹文件结构将应用程序成功部署到 Heroku 的最佳实践是什么?

最佳答案

我要做的是从你的 .gitignore 文件中删除 keys.js。在 config 文件夹中创建另外两个文件。一个用于开发,一个用于生产。将您的 key 放入开发文件中,然后让 .gitignore 忽略该开发文件。

然后在您的 keys.js 文件中创建一个 if 语句,如下所示:

// keys.js - figure out what set of credentials to return
if (process.env.NODE_ENV === 'production') {
// we are in production - return the prod set of keys
module.exports = require('./prod');
} else {
// we are in development - return the dev keys!!
module.exports = require('./dev');
}

然后在您的生产文件中,您将按照我上面同事的建议进行操作,但可能更像这样:

// prod.js - production keys here
module.exports = {
googleClientID: process.env.GOOGLE_CLIENT_ID,
googleClientSecret: process.env.GOOGLE_CLIENT_SECRET,
cookieKey: process.env.COOKIE_KEY
};

如果您还连接到像 MongoDB 这样的数据库,那么您希望像这样在上面添加它,mongoURI: process.env.MONGO_URI

您要做的最后一件事是确保在您的 Heroku 环境变量上定义了所有这些不同的环境变量。

所有这些设置都很简单,您只需要知道在 Herokus 的控制界面上的何处查看,或者按照我上面同事的建议通过命令行终端进行设置。如果您对命令行终端非常熟悉,请继续执行上述步骤,如果不熟悉,请进入浏览器并导航至 dashboard.heroku.com

找到您为应用程序创建的应用程序,单击它。

然后单击设置选项卡,您应该会看到配置变量。单击 reveal Config Variables,这应该会为您提供一个界面来设置您要添加到应用程序中的所有不同变量。

一个一个地添加一个键和它对应的值

因此,首先执行 GOOGLE_CLIENT_ID,复制它并将其作为 key 输入,然后获取您的凭据。您应该已经将凭据副本粘贴到某处。

COOKIE_KEY 做同样的事情,如果你使用的是 Mongo,`MONGO_URI

因此,现在您可以隐藏配置变量,并且没有人能够看到它们。

正如您想象的那样,您不希望任何人进入您的 heroku 帐户。如果有人进入您的 heroku 帐户,我不知道该告诉您什么。

现在您可以通过使用 git 提交代码来部署您的应用程序,也可以使用 git 进行部署。

执行 git status 显示您的文件和文件夹。

git 添加。

git commit -m “完成环境变量”

git push

git push heroku master

在错误消失的情况下,您应该可以继续执行此操作。

关于node.js - Heroku 错误 : Cannot find module './config/keys' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49955431/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com