Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

supertokens-website

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

supertokens-website

frontend sdk for website to be used for auth solution.

  • 10.0.10
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26K
increased by8%
Maintainers
1
Weekly downloads
 
Created
Source

SuperTokens banner

SuperTokens Javascript Frontend SDK

chat on Discord

SuperTokens adds secure login and session management to your apps. This is the Javascript Frontend SDK for SuperTokens. More SDKs are available for frontend and backend e.g. Node.js, Go, Python, React.js, React Native, Vanilla JS, etc.

Architecture Diagram SuperTokens architecture is optimized to add secure authentication for your users without compromising on user and developer experience

Learn more at supertokens.com

How to install

Using npm

npm i -s supertokens-website

OR simply add the following script tag to your HTML pages

<script src="https://cdn.jsdelivr.net/gh/supertokens/supertokens-website/bundle/bundle.js"></script>

How to use

  1. Initialize SuperTokens in your frontend
supertokens.init({
    apiDomain: "<URL to your auth backend>"
});
// To be called at least once before any http request is made to any of your APIs that require authentication.
// Now your app will maintain secure SuperTokens sessions for your users
  1. Make sure your backend has the needed auth functionalities

You can use one of the SuperTokens backend SDKs for this. Backend SDKs are available for

Now that's the basic setup. But you might want to do some of the following things

Checking if a session exists

await supertokens.doesSessionExist();

Reading the userId

let userId = await supertokens.getUserId();

Reading the access token payload

let payload = await supertokens.getAccessTokenPayloadSecurely();

Sign out

The signOut method simply revokes the session on the frontend and backend.

await supertokens.signOut();

Sending requests with fetch

The init function call automatically adds interceptors to fetch. So there is nothing else that needs to be done.

supertokens.init({
    apiDomain: "https://api.example.com"
});

async function doAPICalls() {
    try {
        // make API call as usual
        let fetchConfig = { ... };
        let response = await fetch("/someAPI", fetchConfig);

        // handle response
        if (response.status !== 200) {
            throw response;
        }
        let data = await response.json();
        let someField = data.someField;
        // ...
    } catch (err) {
        if (err.status === 401) {
            // redirect user to login
        } else {
            // handle error
        }
    }
}

Sending requests with axios

supertokens.addAxiosInterceptors(axios); // To be called on each axios instances being imported
supertokens.init({
    apiDomain: "https://api.example.com"
});

async function doAPICalls() {
    try {
        let postData = { ... };
        let response = await axios({url: "someAPI", method: "post", data: postData });
        let data = await response.data;
        let someField = data.someField;
    } catch (err) {
        if (err.response !== undefined && err.response.status === 401) {
            // redirect user to login
        } else {
            // handle error
        }
    }
}

Documentation

To see documentation, please click here.

Contributing

Please refer to the CONTRIBUTING.md file in this repo.

Contact us

For any queries, or support requests, please email us at team@supertokens.com, or join our Discord server.

Authors

Created with :heart: by the folks at SuperTokens.com

Keywords

FAQs

Package last updated on 15 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc