Git Product home page Git Product logo

Comments (4)

santiq avatar santiq commented on May 20, 2024 1

Why would it be difficult?
Just use two servers with his pattern, try to separate your app by domain concern, like in one server have the Authentication Service (user database) and in another have the other models (i.e products on an e-commerce app)

from bulletproof-nodejs.

SamsadSajid avatar SamsadSajid commented on May 20, 2024 1

@barakcodes thanks. I think getting user information should not be part of the order service rather a user service or auth service. With the userId from jwt a REST/gRPC call will be made to the auth service which may return the user's info.

But yes, of course, it's a micro-service design problem.

from bulletproof-nodejs.

SamsadSajid avatar SamsadSajid commented on May 20, 2024

@santiq say I've also got an order service which is a separate microservice. And in the order service, I need to know which user is ordering, and therefore I might need the user model. In this scenario don't I have to write the same User Model, schema in the order-service which I also wrote in the Auth service?

And therefore with this approach am I not keeping duplicate code in my whole eco-system? Or this is the usual approach?

from bulletproof-nodejs.

barakcodes avatar barakcodes commented on May 20, 2024

This is rather a microservice design problem, but in this case, you might use the user id to identify your users and communicate with the auth service when needed to get user information. You could also store the user information in a jwt and share the public key. You should do more research on how to build microservices and how to handle data between services.

from bulletproof-nodejs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.