Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@synonymdev/bitkit-notification-client
Advanced tools
Client to interact with the bitkit-notification-server.
Sends a push notification to the Bitkit device that is associated with the nodeId.
import { BitkitNotificationsClient } from '@synonymdev/bitkit-notification-client';
const client = new BitkitNotificationsClient()
try {
const nodeId = '03864ef025fde8fb587d989186ce6a4a186895ee44a926bfc370e2c366597a3f8f'; // Lightning Node Id of Bitkit
const source = 'blocktank'; // Service name which sends this notification. Shown to the device.
const eventType = 'newPayment'; // Name of the event
const payload = { // Arbitrary data to send to the device. Max 3800 bytes, be careful.
"hello": "world"
}
await client.sendNotification(nodeId: string, eventType: string, payload: any, source: string)
} catch (e) {
const deviceNotFound = e.errorType !== 'deviceNotFound'
if (deviceNotFound) {
// Device is not registered to receive push notifications
} else {
// Genuine error
}
}
package.json
.CHANGELOG.md
.git tag v0.1.0
.git push origin v0.1.0
.npm run build
.npm publish
.FAQs
Bitkit Notification Server client
We found that @synonymdev/bitkit-notification-client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.