Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
An unofficial node.js client for the camp bx api including public market data api methods.
node-campbx is available as campbx
on npm.
npm install campbx
var CampBX = require('campbx'),
campBXTrade = new CampBX("YourUsername", "YourPassword"),
// To use the testnet sandbox version of CampBX's api (https://testnet.campbx.com/)
campBXTestNet = new CampBX("YourTestNetUsername", "YourTestNetPassword", { testnet: true }),
// No need to provide keys if you're only using the public api methods.
campBXPublic = new CampBX();
// Public API method call
// Note: Could use "campBXTrade" or "campBXTestNet" here as well.
campBX.ticker(function(err, data) {
if(err) {
throw err;
}
console.log(data);
});
// Trade API method call, use "campBXTestNet" here to use your testnet sandbox account instead.
campBX.myFunds(function(err, data) {
if(err) {
throw err;
}
console.log(data);
});
A method-by-method reference is available on the wiki.
This module is ISC licensed.
FAQs
campbx.com API client for node.js
We found that campbx demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.