Skip to content

Microservice architecture for a typical library management system

Notifications You must be signed in to change notification settings

BackAged/library-management

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A distributed library-management app

*api-gateway - typescript nodejs - all request goes through this - and it's resposible for orchestrating authentication and authorization

*user-auth - typescript nodejs - user-auth service maintains users and authentication and authorization

*book - golang - book service maintains books and authors

*library - golang - library service maintains book loans

Request flow => client -> api-gateway -> user-auth(authentication & authorization)
-> proxy to other service (with appropriate authorization information)
TODO =>
1.Improve excel export by using worker process to generate excel and generate at timeinterval ex-hourly, 
save the file and serve that saved file, NOT ON REQUEST TRANSACTION
2.Implement saga to maintain bookloans data consistency in (Book & Library) service