
Research
SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.
NodeJS client for btcd WebSocket API. Written in CoffeeScript (and published to npm as compiled JavaScript).
npm install btcd
// Notice the "/ws" in the url.
var btcd = require('btcd')('wss://user:password@localhost:8334/ws',
__dirname + '/rpc.cert');
// All the jsonrpc calls are available as methods:
btcd.getblockhash(0, function(err, hash){
if (err) throw err;
console.log(hash); // 000000000019d6689c085ae...
});
btcd.createrawtransaction(
[{ txid: ..., vout: 0 }],
{ '1KDZMzoahiAHtAbp8VuVvNahm5SaN3PFXc': 0.5 },
function(err, rawtx) {
// ...
}
)
// Calls with notifications emits additional events:
btcd.notifyreceived([ '1KDZMzoahiAHtAbp8VuVvNahm5SaN3PFXc' ], function(err) {
if (err) throw err;
// Listening started succesfully, transactions will now trigger 'recvtx' below
});
btcd.on('recvtx', function(tx, block) {
// process tx
});
// Close the connection
btcd.close();
(TODO: document events)
Running the tests requires setting up a local btcd and configuring the tests to connect to it.
# Install dev dependencies
npm install
# Run tests
BTCD_URI=wss://user:pass@localhost:8334/ws \
BTCD_CERT=./rpc.cert \
npm test
Information about data being sent and received can be displayed using the
debug package.
To enable this, start the process with the environment variable DEBUG=btcd.
MIT
FAQs
NodeJS client for btcd WebSocket API
The npm package bcdt receives a total of 41 weekly downloads. As such, bcdt popularity was classified as not popular.
We found that bcdt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.

Research
An emerging npm supply chain attack that infects repos, steals CI secrets, and targets developer AI toolchains for further compromise.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.