vietan
vietan

Reputation: 128

Is it possible to serve React from Node?

I'm new to back-end coding, and I'm struggling to understand exactly what a "fullstack" app would look like. Is it:

Upvotes: 1

Views: 63

Answers (1)

Moein Moeinnia
Moein Moeinnia

Reputation: 2341

Both are currect , your server can serve content to the cliend (first case) or send data to the client (json , xml or etc).

Note that when you are working with react and .jsx component you have to build your project and server the html file (including js , css) via express server

Upvotes: 1

Related Questions