Kelvin
Kelvin

Reputation: 131

How to use React.js and Node.js on the same repository

I've recently been having trouble with this. Is it possible to have reactjs and Parse Server(not the SDK) running and taking requests in the same node project?

If so, how?

Upvotes: 4

Views: 1479

Answers (1)

Julien Kode
Julien Kode

Reputation: 5479

Yes you can do it.

You can use yarn workspaces to share some packages between theses two project

You have to create two different workspaces, one for the frontend and another for the backend

Here is more information about it. They have a really nice documentation

Upvotes: 5

Related Questions