Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Node.js Phabricator Conduit API client.
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);
});
});
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 has 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, canduit 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 certificatetoken
- token obtined via arc install-certificate
canduit.exec(route, params, callback)
Call a conduit API endpoint.
route
is the name of the endpoint, andparams
object contains the parameters to pass.callback(error, result)
a callback function that fires when the conduit server responds.In case of client, server, or conduit-specific errors, the error
parameter holds the Error instance, and the result
is falsy.
If the call suceeds, the result
is set to an object containing response data.
canduit.authenticate(callback)
Re-authenticate the client with the server. Called internally by the constructor, but exposed in case you encounter an authentication timeout.
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
.
Copyright (c) 2014 Uber
Licensed under the MIT license.
FAQs
Node.js Phabricator Conduit API client
The npm package canduit receives a total of 1,290 weekly downloads. As such, canduit popularity was classified as popular.
We found that canduit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.