Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

appveyor-js-client

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appveyor-js-client

AppVeyor API Client for Node.js

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

AppVeyor Client for Node.js

NPM

This is an incomplete API client for the AppVeyor API.

Installation

npm install appveyor-js-client

Requirements

You must have an AppVeyor account. To run the client, you'll need your AppVeyor account name and API token, which you can get at https://ci.appveyor.com/api-token.

You may either pass your AppVeyor API token into the AppVeyor() constructor or set it as an environment variable APPVEYOR_API_TOKEN.

Usage

Create a client

var AppVeyor = require('appveyor-js-client'),
    appveyor = new AppVeyor('account-name', 'api-token');

Get Projects

appveyor.getProjects(function(err, projects) {
    console.log(projects);
});

Using Project API

Each project returned is an AppVeyorProject object with the following functions:

Missing Features

Not all of the AppVeyor API is covered in this client. Feel free to add functionality in a pull request.

Keywords

appveyor

FAQs

Package last updated on 27 Feb 2015

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