
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
npm install getui2 --save
npm test
/**
* 个推配置
* config {Obj}:
* HOST:必选
* APPID: 必选
* APPKEY: 必选
* MASTERSECRET: 必选
*/
const getui = require('getui2').GeTuiDecorator({
HOST: 'http://sdk.open.api.igexin.com/apiex.htm',
APPID: '',
APPKEY: '',
MASTERSECRET: '',
})
/**
* 个推调用 返回promise对象,
* message {Obj}:
* title:必选 推送标题
* text: 必选 推送正文,
* url: 必选 跳转,
* uidList: 可选 分组推送时用户uid
*/
const message = {
title: '推送标题',
text: '推送正文',
url: `http://www.baidu.com`,
uidList: ['777'],
}
/**
* 透传消息 推送所有用户
**/
getui.pushMessage(message, 'transmission', 'pushMessageToApp')
/**
* 跳转链接 推送给所有用户
**/
getui.pushMessage(message, 'link', 'pushMessageToApp')
/**
* 通知消息 推送给所有用户
**/
getui.pushMessage(message, 'notification', 'pushMessageToApp')
/**
* 透传消息 推送给分组用户 需要设置别名
**/
getui.pushMessage(message, 'transmission', 'pushMessageToList')
/**
* 通知消息 推送给分组用户 需要设置别名
**/
getui.pushMessage(message, 'notification', 'pushMessageToList')
FAQs
Node wrapper for getui OS SDK API
We found that getui2 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.