Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@codewarriorr/electrum-client-js
Advanced tools
Electrum protocol client for node.js and browser
JavaScript implementation of Electrum Protocol Client.
This is a library that can communicate with the ElectrumX Server
on tcp
, ssl
, ws
and wss
protocols.
Works in node.js and browser.
Implements methods described in Electrum Protocol methods documentation.
Subscriptions and notifications are also supported, please see example.
Latest CircleCI build status:
npm install --save @codewarriorr/electrum-client-js
const ElectrumClient = require('@codewarriorr/electrum-client-js')
async function main() {
const client = new ElectrumClient(
'fortress.qtornado.com',
50002,
'ssl'
)
try {
await client.connect(
'electrum-client-js', // optional client name
'1.4.2' // optional protocol version
)
const header = await client.blockchain_headers_subscribe()
console.log('Current header:', header)
await client.close()
} catch (err) {
console.error(err)
}
}
main()
See more examples.
FAQs
Electrum protocol client for node.js and browser
The npm package @codewarriorr/electrum-client-js receives a total of 2 weekly downloads. As such, @codewarriorr/electrum-client-js popularity was classified as not popular.
We found that @codewarriorr/electrum-client-js 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
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.