create-react-app with node express getting%PUBLIC_URL%

时间:2017-07-01 15:41:36

标签: javascript node.js reactjs react-router create-react-app

我正在尝试使用快速服务器创建反应应用程序。在我点击请求后设置服务器我正在

GET http://localhost:3333/%PUBLIC_URL%/favicon.ico 400 (Bad Request)

错误预览它给我

URIError: Failed to decode param '/%PUBLIC_URL%/favicon.ico'
    at decodeURIComponent (<anonymous>)
    at decode_param (/home/owaishanif/code/flashcard-app/node_modules/express/lib/router/layer.js:172:12)
    at Layer.match (/home/owaishanif/code/flashcard-app/node_modules/express/lib/router/layer.js:123:27)
    at matchLayer (/home/owaishanif/code/flashcard-app/node_modules/express/lib/router/index.js:574:18)
    at next (/home/owaishanif/code/flashcard-app/node_modules/express/lib/router/index.js:220:15)
    at jsonParser (/home/owaishanif/code/flashcard-app/node_modules/body-parser/lib/types/json.js:103:7)
    at Layer.handle [as handle_request] (/home/owaishanif/code/flashcard-app/node_modules/express/lib/router/layer.js:95:5)
    at trim_prefix (/home/owaishanif/code/flashcard-app/node_modules/express/lib/router/index.js:317:13)
    at /home/owaishanif/code/flashcard-app/node_modules/express/lib/router/index.js:284:7
    at Function.process_params (/home/owaishanif/code/flashcard-app/node_modules/express/lib/router/index.js:335:12)

这是服务器代码

var express = require('express');
var bodyParser = require('body-parser');
var path = require ('path');

var data = {};

express()
    .use(express.static(path.resolve(__dirname, '..', 'public')))
    .use(bodyParser.json())

    .get('/api/data', (req, res) => res.json(data))

    .post('/api/data', (req, res) => res.json(data = req.body))

    .get('*', (req, res) => res.sendFile( path.resolve( __dirname, '..', 'public/index.html')))

    .listen(3333, function(){
        console.log('server running at 3333');
    });

我想在服务器上使用create react app。网上有文章,但它们已经过时了。欢迎提供帮助提示和技巧。

1 个答案:

答案 0 :(得分:4)

我使用create-react-app build解决了这个问题,它创建了一个构建文件夹%public_url%字符串被幕后的一些纱线脚本替换。所以我们不能直接服务该文件夹,而是我们必须使用build生成。

使用yarn buildnpm run build生成包含asset manifest和其他文件的构建文件夹。

之后使用该构建文件夹静态服务您的文件以供生产使用。