Socket
Socket
Sign inDemoInstall

stytch

Package Overview
Dependencies
Maintainers
7
Versions
157
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stytch

A wrapper for the Stytch API


Version published
Weekly downloads
28K
decreased by-2.44%
Maintainers
7
Weekly downloads
 
Created
Source

stytch-node

The Stytch Node library provides support for the Stytch API for server-side Javscript applications. You can find out more about the Stytch API at stytch.com/docs.

If you're looking for frontend support for our Javascript SDK, check out stytch-js.

Quickstart

Install stytch

npm install stytch

Example login_or_create usage

import Stytch from 'stytch';

const stytchClient = new Stytch.Client({
  project_id: "PROJECT_ID",
  secret: "SECRET", 
  env: Stytch.envs.test
});


const loginOrCreateWithMagicLink = async () => {
  const params: Stytch.loginOrCreateRequest = {
    email: 'sandbox@stytch.com',
    login_magic_link_url: 'https://www.stytch.com/login',
    signup_magic_link_url: 'https://www.stytch.com/signup',
  };

  const response: Stytch.loginOrCreateResponse = await stytchClient.loginOrCreate(params);

  console.log(response);
};

const authenticateMagicLink = async (token) => {
  const response = Stytch.authenticateMagicLinkResponse = await stytchClient.authenticateMagicLink(token);

  console.log(response);
};


loginOrCreateWithMagicLink().then().catch(err => console.log(err));
authenticateMagicLink('token from email').then().catch(err => console.log(err));

FAQs

Package last updated on 23 Apr 2021

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