I use express for my API. I have a folder named app and another folder named server. app is the client app, using create-react-app as boilerplate, while server is express.js app for the API.
in the app.js file of the server, I wrote
app.get("*", function (req, res) {
res.sendFile(path.resolve(__dirname, '../app/build/index.html'));
})
But then when I call any API endpoint, I get
You need to enable JavaScript to run this app.
in the response. I'm confused; what's wrong?
I use express for my API. I have a folder named app and another folder named server. app is the client app, using create-react-app as boilerplate, while server is express.js app for the API.
in the app.js file of the server, I wrote
app.get("*", function (req, res) {
res.sendFile(path.resolve(__dirname, '../app/build/index.html'));
})
But then when I call any API endpoint, I get
You need to enable JavaScript to run this app.
in the response. I'm confused; what's wrong?
Share Improve this question edited Aug 30, 2019 at 14:19 TylerH 21.1k78 gold badges79 silver badges114 bronze badges asked Sep 10, 2017 at 7:02 Jenny MokJenny Mok 2,8049 gold badges33 silver badges62 bronze badges 8- 1 Looks like your browser has disabled javascript. IS that right ? – Panther Commented Sep 10, 2017 at 7:04
- @Panther nope.. – Jenny Mok Commented Sep 10, 2017 at 7:06
- make sure you define all your routes first then the catch-all case at the end – Amr Aly Commented Sep 10, 2017 at 7:19
- @AmrAly I did, here's my file pastebin./PRhLaH0E – Jenny Mok Commented Sep 10, 2017 at 7:22
- No you did not you have defined all your routes after the catch all case just make sure to put the the above code after the routes handlers – Amr Aly Commented Sep 10, 2017 at 7:32
2 Answers
Reset to default 1In the build directory you have more files that just index.html. You also have build/js/main.buildNumber.js and build/css/main.buildNumber.css. So when your frontend makes a request to https://yourdomain./css/main.buildNumber.js, it incorrectly returns index.html not main.js.
Instead, you should serve the contents of the build folder statically with express.static
app.use('/', express.static(__dirname + '/'));
Or you can look into the "serve" node module to host your app. This will work nicely with react-router. npm i -g serve
then cd build
then serve . --single -p 5000
. This will serve your app on port 5000 (http://localhost:5000).
For me, the issue was that I was mixing styles for functional and class based ponents. Double check that you don't have any dangling this
keywords, or perhaps some missing of the same.