无法在Heroku中使用fs

时间:2019-12-12 17:09:22

标签: node.js heroku fs

我当时正在为一个不和谐的简单机器人编写程序,我注意到当我使用fs时,该应用程序不会部署。我需要访问文件夹内的文件。但是当我使用时:

const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));

for (const file of commandFiles) {
    const command = require(`./commands/${file}`);
    client.commands.set(command.name, command);
}

该应用程序未部署,我尝试在一个.js文件中进行所有操作,但我确实需要使用modules.export 我什至不能使用:

const configFile = require('./config')

0 个答案:

没有答案