NodeJS + React App Hosting

What is the name of the domain?

https://shreyanportfoliochatbot.pages.dev/

What is the issue you’re encountering

Node Express server code is not deploying on Cloudflare pages.

What are the steps to reproduce the issue?

I am brand new to Cloudflare and Web Development in general, so apologize if this question is quite elementary in nature. I have a full stack app whose directory structure looks like this:

app
|-client
|–all client code files (including webpack.config.js)
|-server
|–all server code files (including routes.ts)

Running nom run build inside both the client and server folder, I got client-dist and server-dist folders. I repackaged these specific folders into a big dist folder and deployed using Cloudflare Pages. However, while the React frontend is running just fine, the Node Express Backend server code isn’t. When the enduser submits a request, the server throws a 404 error, with the api endpoint not being found. How can I correctly deploy the server as well? The docs mention something about workers - how do I deploy a node express code into a worker.js file?

Sorry I meant npm run build. Autocorrect changed it to nom

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.