SkillAgentSearch skills...

Arctic

OAuth 2.0 clients for popular providers

Install / Use

/learn @pilcrowonpaper/Arctic
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Arctic

Documentation: arcticjs.dev

Arctic is a collection of OAuth 2.0 clients for popular providers. Only the authorization code flow is supported. Built on top of the Fetch API, it's light weight, fully-typed, and runtime-agnostic.

npm install arctic
import * as arctic from "arctic";

const github = new arctic.GitHub(clientId, clientSecret, redirectURI);

const state = arctic.generateState();
const scopes = ["user:email"];
const authorizationURL = github.createAuthorizationURL(state, scopes);

// ...

const tokens = await github.validateAuthorizationCode(code);
const accessToken = tokens.accessToken();

Arctic only supports providers that follow the OAuth 2.0 spec (including PKCE and token revocation).

Semver

Arctic does not strictly follow semantic versioning. While we aim to only introduce breaking changes in major versions, we may introduce them in a minor update if a provider updates their API in a non-backward compatible way. However, they will never be introduced in a patch update.

Supported providers

  • 42 School
  • Amazon Cognito
  • AniList
  • Apple
  • Atlassian
  • Auth0
  • Authentik
  • Autodesk Platform Services
  • Battle.net
  • Bitbucket
  • Box
  • Bungie
  • Coinbase
  • Discord
  • DonationAlerts
  • Dribbble
  • Dropbox
  • Etsy
  • Epic Games
  • Facebook
  • Figma
  • Gitea
  • GitHub
  • GitLab
  • Google
  • Intuit
  • Kakao
  • KeyCloak
  • Kick
  • Lichess
  • Line
  • Linear
  • LinkedIn
  • Mastodon
  • MercadoLibre
  • MercadoPago
  • Microsoft Entra ID
  • MyAnimeList
  • Naver
  • Notion
  • Okta
  • osu!
  • Patreon
  • Polar
  • Reddit
  • Roblox
  • Salesforce
  • Shikimori
  • Slack
  • Spotify
  • Start.gg
  • Strava
  • Synology
  • TikTok
  • Tiltify
  • Tumblr
  • Twitch
  • Twitter
  • VK
  • WorkOS
  • Yahoo
  • Yandex
  • Zoom
View on GitHub
GitHub Stars1.7k
CategoryDevelopment
Updated6h ago
Forks88

Languages

TypeScript

Security Score

100/100

Audited on Mar 27, 2026

No findings