
Company News
Socket Has Acquired Secure Annex
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.
A full node implementation of bitcoin-based coins.
Note: This is still heavily under construction. After sitting on my hard drive collecting dust for the last 2 years, I've deciding to get it back into it. The original plan was to be pure JavaScript, however, the lack of a suitable database solution for the blockchain means I will probably use a simple library like LevelDB that, while not pure JavaScript, tends to be highly compatible.
npm install coindjs
The CoinDJs library is carved up into several smaller pieces, as only sub-components may be necessary for many projects.
This is a very simple node, which will connect to a bitcoin node on the current host and dump messages.
var Node = require('./node').Node;
var node = new Node();
node.connect('127.0.0.1', 8333);
node.on('send', function (peer, message) {
console.log('send ', message.command);
});
node.on('message', function(peer, message) {
console.log('message', message);
});
node.on('peerError', function (peer, error) {
console.log('error', error);
});
Obviously, it's all licensed under the MIT license, so use it as you wish; but if you'd like to buy me a coffee, I won't complain. =)
14LqHMgjUvsZqExfun9WxMDqKRzAE8RyRED6Boh5yJW5GZgXxBvBDc14abmERqPytXtumsruGAUef59FYSsmVnAWxrapCKiSvRnj2JFAQs
Bitcoin full node and library.
The npm package coindjs receives a total of 3 weekly downloads. As such, coindjs popularity was classified as not popular.
We found that coindjs 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.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.