ESLint - 未定义“进程”
2022-08-30 02:32:51
我正在将ESLinter用于一个简单的节点项目。以下是我在索引中唯一的代码.js:
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send({
hi: 'there'
});
});
const PORT = process.env.PORT || 5000;
app.listen(PORT);
我正在使用编辑器。它会自动运行 ESLint for JS 代码。VSCode
在IDE中,我看到下面最后一行的错误 -
[eslint] 'process' is not defined. (no-undef)
任何想法是什么问题?