4

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?

Kelvin
  • 79
  • 1
  • 7
  • could you provide more contexts of the trouble you have? – yihan Nov 26 '18 at 14:39
  • Its not really a trouble but, I was wondering, if I wanted to create a web app using parse server and react. Can I install both of them to make it like a MERN application or do I have to put the parse server in another node.js project and the react app in another project? Please feel free to tell me if I'm not making sense – Kelvin Nov 26 '18 at 16:24

1 Answers1

5

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

Julien Kode
  • 5,010
  • 21
  • 36