如果没有,请告诉我如何在heroku上正确部署它。客户端代码写在文件main.js中:
const app = express();
const server = http.createServer(app);
app.use(express.static('.'));
server.listen(5000);
在服务器文件index.js中,我有类似以下内容:
nodemon index.js
在本地工作,我运行服务器:
Dateiname
和webpack-dev-server(在具有另一个端口的localhost上) 但是我不知道如何在heroku或github页面上正确运行所有内容。请帮我。.