Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

canduit

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

canduit

Node.js Phabricator Conduit API client

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

canduit Build status

Node.js Phabricator Conduit API client.

Getting Started

var createCanduit = require('canduit');

// Create and authenticate client
createCanduit(function (err, canduit) {

  // Execute a conduit API call
  canduit.exec('user.query', {
    usernames: ['aleksey']
  }, function (err, users) {

    console.log(users);
  });
});

Documentation

Canduit(config, callback)

The Canduit constructor takes an optional config parameter, and a callback(error, conduit) function. The callback fires after the canduit client instance have successfully authenticated with the server.

The first argument of the callback function is an error (if present), and the second is the reference to the conduit client instance for convenience.

The config object can take the following configuration parameters:

  • configFile - file to read the Arcanist configuration parameters. By default, phab reads ~/.arcrc for host and authentication configuration.

You can also programmatically override the Conduit host and credentials:

  • user - conduit username,
  • api - conduit api root,
  • cert - conduit certificate
canduit.exec(route, params)

Call a conduit API endpoint.

  • route is the name of the endpoint, and
  • params object contains the parameters to pass.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint via npm lint and test via npm test.

License

Copyright (c) 2014 Uber

Licensed under the MIT license.

Keywords

FAQs

Package last updated on 03 Oct 2014

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