Trouble in integrating express.js with Django

i built a login system for a web app using node and express but my friend built a dashboard in Django. Now I am not sure how to integrate both .How do I authenticate the user in dashboard side?
can i run both on a single server?

I tried creating a Json web token with email and some other details and storing it in session cookie ,which then is authenticated on dashboard side but that isn’t working .I am not sure what to do.

Leave a Comment