Gathering detailed insights and metrics for mixin-node-sdk
Gathering detailed insights and metrics for mixin-node-sdk
Gathering detailed insights and metrics for mixin-node-sdk
Gathering detailed insights and metrics for mixin-node-sdk
npm install mixin-node-sdk
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (95.11%)
JavaScript (4.89%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
Apache-2.0 License
10 Stars
103 Commits
4 Forks
1 Watchers
9 Branches
4 Contributors
Updated on Feb 26, 2023
Latest Version
3.1.16
Package Id
mixin-node-sdk@3.1.16
Unpacked Size
1.16 MB
Size
277.45 kB
File Count
105
NPM Version
9.6.5
Node Version
19.9.0
Published on
Jul 16, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
16
The Node.js version of the mixin SDK
1npm install mixin-node-sdk
If you use yarn
1yarn add mixin-node-sdk
1const { Client } = require('mixin-node-sdk'); 2const client = new Client({ 3 client_id: '', 4 session_id: '', 5 pin_token: '', 6 private_key: '', 7 pin: '', 8 client_secret: '', 9}); 10// Use Promise 11client.userMe().then(console.log); 12 13// use async await 14async function getMe() { 15 const me = await client.userMe(); 16 console.log(me); 17}
1const { BlazeClient } = require('mixin-node-sdk'); 2const client = new BlazeClient( 3 { 4 client_id: '', 5 session_id: '', 6 pin_token: '', 7 private_key: '', 8 pin: '', 9 client_secret: '', 10 }, 11 { parse: true, syncAck: true }, 12); 13 14client.loopBlaze({ 15 onMessage(msg) { 16 console.log(msg); 17 }, 18 onAckReceipt(msg) { 19 console.log('ack', msg); 20 }, 21});
BlazeClient directly inherits Client, so all Client methods BlazeClient can be called directly.
mixin-node-sdk@2.xx.xx
, please see https://github.com/liuzemei/mixin-node-sdk/tree/v2Acceptable PRs.
Copyright 2021 Mixin.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
25 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More