npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@octokit/auth-token.js

v1.0.0

Published

Octokit library implementing the token authentication strategy for browsers and Node.js

Readme

auth-token.js

Octokit library implementing the token authentication strategy for browsers and Node.js

@latest Build Status Greenkeeper

@octokit/auth-token is the simplest of GitHub’s authentication strategies.

A string is passed to the createTokenAuth function which returns the async auth function.

The auth function validates the passed token and resolves with the correct authorization header.

Usage

import { createTokenAuth } from "@octokit/auth-token";
import { request } from "@octokit/request";

(async () => {
  const auth = createTokenAuth("1234567890abcdef1234567890abcdef12345678");
  const authentication = await auth();
  // {
  //   type: 'token',
  //   token: '1234567890abcdef1234567890abcdef12345678',
  //   tokenType: 'oauth',
  //   headers: {
  //     authorization: 'token 1234567890abcdef1234567890abcdef12345678'
  //   }
  // }

  // `authentication.headers` can be directly passed to a request
  const result = await request("GET /orgs/:org/repos", {
    headers: authentication.headers,
    org: "octokit",
    type: "private"
  });
})();

createTokenAuth(token)

The createTokenAuth method accepts a single argument of type string, which is the token. The passed token can be one of the following:

Examples

// Personal/OAuth access token
createTokenAuth("1234567890abcdef1234567890abcdef12345678");

// Installation access token or GitHub Action token
createTokenAuth("v1.d3d433526f780fbcc3129004e2731b3904ad0b86");

It returns the asynchronous auth() method.

auth()

The auth() method has no options. It returns the authentication object.

Authentication object

Find more information

createTokenAuth does not send any requests, it only transforms the provided token string into an authentication object.

Here is a list of things you can do to retrieve further information

Find out what scopes are enabled for oauth tokens

Note that this does not work for installations. There is no way to retrieve permissions based on an installation access tokens.

import { createTokenAuth } from "@octokit/auth-token";
import { request } from "@octokit/request";

const TOKEN = "1234567890abcdef1234567890abcdef12345678";

(async () => {
  const auth = createTokenAuth(TOKEN);
  const authentication = await auth();

  const response = await request("HEAD /", {
    headers: authentication.headers
  });
  const scopes = response.headers["x-oauth-scopes"].split(/,\s+/);

  if (scopes.length) {
    console.log(
      `"${TOKEN}" has ${scopes.length} scopes enabled: ${scopes.join(", ")}`
    );
  } else {
    console.log(`"${TOKEN}" has no scopes enabled`);
  }
})();

Find out if token is a personal access token or if it belongs to an OAuth app

import { createTokenAuth } from "@octokit/auth-token";
import { request } from "@octokit/request";

const TOKEN = "1234567890abcdef1234567890abcdef12345678";

(async () => {
  const auth = createTokenAuth(TOKEN);
  const authentication = await auth();

  const response = await request("HEAD /", {
    headers: authentication.headers
  });
  const clientId = response.headers["x-oauth-client-id"];

  if (clientId) {
    console.log(
      `"${token}" is an OAuth token, its app’s client_id is ${clientId}.`
    );
  } else {
    console.log(`"${token}" is a personal access token`);
  }
})();

Find out what permissions are enabled for a repository

Note that the permissions key is not set when authenticated using an installation access token.

import { createTokenAuth } from "@octokit/auth-token";
import { request } from "@octokit/request";

const TOKEN = "1234567890abcdef1234567890abcdef12345678";

(async () => {
  const auth = createTokenAuth(TOKEN);
  const authentication = await auth();

  const response = await request("GET /repos/:owner/:repo", {
    owner: 'octocat',
    repo: 'hello-world'
    headers: authentication.headers
  });

  console.log(response.data.permissions)
  // {
  //   admin: true,
  //   push: true,
  //   pull: true
  // }
})();

Use token for git operations

Both OAuth and installation access tokens can be used for git operations. However when using with an installation, the token must be prefixed with x-access-token.

import { createTokenAuth } from "@octokit/auth-token";
import { request } from "execa";

const TOKEN = "1234567890abcdef1234567890abcdef12345678";

(async () => {
  const auth = createTokenAuth(TOKEN);
  const { token, tokenType } = await auth();
  const tokenWithPrefix =
    tokenType === "installation" ? `x-access-token:${token}` : token;

  const repositoryUrl = `https://${tokenWithPrefix}@github.com/octocat/hello-world.git`;

  const { stdout } = await execa("git", ["push", repositoryUrl]);
  console.log(stdout);
})();

License

MIT