Share Secret Tokens Across Multiple Tabs Securely In Angular

How to share JWT tokens in Angular applications when opening in a new tab.

Touhid Rahman
JavaScript in Plain English
3 min readMar 9, 2022

--

Angular applications that store JWT tokens such as access token and refresh token in session storage (NOT local storage), often need a way to share them in a new tab so that the user doesn’t have to login again to access the application.

--

--