react node55 源码
Create React App入门 这个项目是简单的React前端,并开发后端启动程序。 在您的目录中创建react app(就我而言,我将文件夹命名为client)。 使用类组件更改app.js,就像在客户端目录中的代码一样。 在您的根目录中创建名为api的Express应用 npm install -g express-generator CD API npm安装 像您的想法一样设置端口url(在我的情况下,我设置为9000)。 for example var port = normalizePort(process.env.PORT || '9000'); app.set('port', port); // this is that frontend and backend both can run on one browser 在a
用户评论