
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
api-proxy-samicelus
Advanced tools
npm i api-proxy-samicelus
//引入包,配置数据库和缓存连接
const api = require('api-proxy-samicelus')(
{
mongoConfig:{
host:'127.0.0.1',
port: 27017,
db: 'test'
},
redisConfig:{
host: '127.0.0.1',
port: 6379
}
}
)
async function callAPI(options){
let result = await api.callConfigedApi({
app_id: options.app_id,
apiName: options.apiName,
params: options.params
console.log(result);
}
//将在控制台输出对应api配置输出
callAPI({
app_id: "5ebcfb26b5ffe13eac302917" // 在web端预配置的应用id
apiName: "同步药品目录" // 在web端预配置的api名称
params: {} // 调用时的入参键值对 JSON格式
})
FAQs
`npm i api-proxy-samicelus`
The npm package api-proxy-samicelus receives a total of 6 weekly downloads. As such, api-proxy-samicelus popularity was classified as not popular.
We found that api-proxy-samicelus 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.