Reputation: 131
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
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