supertokens-website
supertokens-website copied to clipboard
Frontend SDK for SuperTokens - for session management + automatically refreshing sessions
Right now, a refresh call is done only after the access token call fails. Instead, we can detect if the access token has already expired, and if so, make the...
Hi, Safari does this funny thing where if you try and use localStorage when the user has enabled the "Block Cookies" setting the browser throws a Security Error, which bubbles...
When a google ad pixel fires we get the error `Uncaught (in promise) TypeError: Failed to fetch` if using Adblock Plus extension. I'm using Chrome on mac. The ad pixel...
The issue with using cookie store on the frontend in header based auth is that those cookies are not secure. So during page loads, those can be sent over the...
Since cookies are shared across different ports on localhost, we should allow interception on the frontend for localhost:*. This allows users to have different backends running on localhost and use...
if someone is using another auth provider and supertokens (in cookie mode), and if in a request they add the other provider's token, and it sends back a 401, this...
This is a feature request for module augmentation using TypeScript. When you add custom properties to the access token payload in the backend via createNewSession override, you lose type safety...
Somewhere we use `headers.set`, whereas somewhere else we use `headers = {key1: "..", }`. This causes an issue in the pre API hook wherein if the user wants to modify...
Bumps [webpack](https://github.com/webpack/webpack) from 5.74.0 to 5.76.0. Release notes Sourced from webpack's releases. v5.76.0 Bugfixes Avoid cross-realm object access by @Jack-Works in webpack/webpack#16500 Improve hash performance via conditional initialization by @lvivski...