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 🙏

© 2024 – Pkg Stats / Ryan Hefner

circle-client

v0.2.4

Published

A JavaScript client for CircleCI v2 API

Downloads

13,199

Readme

CircleCI JS Client

A JavaScript client for CircleCI's v2 API.

Usage

Setup

First, go and get a CircleCI API Token.

Then all you need to do is import the client class and instantiate it with your token and optionally a project slug and default branch:

import CircleCI from 'circle-client';

const client = new CircleCI('2c818264d2557cd14b9fc3fa538df6ecbc6489f3', {
  // this could also be "github/owner/repo"
  slug: ['github', 'owner', 'repo'],
  // methods that take a branch arg can override this
  branch: 'main',
});

Your project slug consists of:

  • The VCS provider (either github or bitbucket)
  • The project's owner (e.g. your username or organization name)
  • The repo name

Methods

Below is a summary list of available methods. Check out the main client file for fully-typed method signatures.

Paginated results: any method that begins with list returns a Paged<T> object, with an items property containing the API results, and a next_page_token property. If next_page_token is set, you can use it to call the method again with the pageToken argument set to that value to retrieve the next page of results.

Context 🔗

  • listContexts - List all contexts for an owner.
  • createContext - Create a new context.
  • deleteContext - Delete a context.
  • listContextEnvVars - List information about environment variables in a context, not including their values.
  • createContextEnvVar - Create or update an environment variable within a context.
  • deleteContextEnvVar - Delete an environment variable from a context.

Insights 🔗

  • listWorkflowMetrics - Get summary metrics for a project's workflows.
  • listWorkflowRuns - Get recent runs of a workflow.
  • listWorkflowJobMetrics - Get summary metrics for a project workflow's jobs.
  • listWorkflowJobRuns - Get recent runs of a job within a workflow.

User 🔗

🚧 This set of endpoints are listed as Preview and may change without warning.

  • getMe - Information about the user that is currently signed in.
  • getCollaborations - Provides the set of organizations of which the currently signed in user is a member or a collaborator.
  • getUser - Information about the user with the given ID.

Pipeline 🔗

  • listPipelines - Returns all pipelines for the most recently built projects you follow in an organization.
  • getPipeline - Returns a pipeline by ID.
  • getPipelineConfig - Returns a pipeline's configuration by ID.
  • listPipelineWorkflows - Returns a paginated list of workflows by pipeline ID.
  • triggerProjectPipeline - Triggers a new pipeline on the project.
  • listProjectPipelines - Returns all pipelines for this project.
  • listOwnProjectPipelines - Returns a sequence of all pipelines for this project triggered by the user.
  • getProjectPipeline - Returns a pipeline by number.

Job 🔗

🚧 This set of endpoints are listed as Preview and may change without warning.

  • getJob - Returns job details.
  • cancelJob - Cancel job with a given job number.
  • listJobArtifacts - Returns a job's artifacts.
  • listJobTests - Get test metadata for a build.

Workflow 🔗

  • getWorkflow - Returns summary fields of a workflow by ID.
  • approveWorkflowJob - Approves a pending approval job in a workflow.
  • cancelWorkflow - Cancels a running workflow.
  • listWorkflowJobs - Returns a sequence of jobs for a workflow.
  • rerunWorkflow - Reruns a workflow.

Project 🔗

  • getProject - Retrieves a project by project slug.
  • listCheckoutKeys - Returns a sequence of checkout keys for the project.
  • createCheckoutKey - Creates a new checkout key.
  • deleteCheckoutKey - Deletes the checkout key.
  • getCheckoutKey - Returns an individual checkout key.
  • listEnvVars - List all environment variables (masked).
  • createEnvVar - Creates a new environment variable.
  • deleteEnvVar - Deletes the environment variable named.
  • getEnvVar - Returns the masked value of an environment variable.

Other

  • downloadArtifact - Download a job artifact and save it to disk.

Errors

In addition to Fetch errors, the following errors can occur:

  • Any method that relies on a project slug will throw a ProjectSlugError if one is not set when the method is called.
  • When an API call is made, if the response status code does not equal the success code indicated for that endpoint in API documentation, an APIError will be thrown. The object contains a message (which might be generated by the client or the API), status, and the response object of the Fetch request.
  • A method may throw ArgumentError if an invalid set of arguments is provided that cannot be caught by TypeScript.

Development

Development is pretty straightforward:

  • Run yarn build to generate a new distribution build.
  • yarn lint and yarn format are also available and do exactly what they say.

Testing

Run tests:

  • yarn test (optionally with --watchAll)

Run the CircleCI test job locally:

  • Download the CircleCI CLI
  • If you're changing the config, validate your changes: circleci config validate
  • Generate a local config file: circleci config process .circleci/config.yml > .circleci/local.yml
  • Execute the test job: circleci local execute -c .circleci/local.yml --job test