
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.
jscommunicator
Advanced tools
Communicator client for javascript
npm install jscommunicator --save
const express = require('express')
const jsComm = require('jscommunicator')
const app = express()
const config = {
communicator: {
communicatorQueueUri: 'beanstalk://localhost/dev-',
signingKey: 'xxxx'
}
}
app.use(function (req, res, next) {
client = new jsComm.CommunicatorClient(req, config, "accounts")
const obj = client.getInstance('smsGenericPromotional')
console.log(obj.getDomain())
next()
})
app.get('/', (req, res) => res.send('Hello World!'))
app.listen(3000, () => console.log('Example app listening on port 3000!'))
client = new jsComm.CommunicatorClient(null, config, "accounts")
const obj = client.getInstance('smsGenericPromotional')
obj.setDomain("domain value")
host eg. abc-access123.practodev.com
config eg. { communicator: { communicatorQueueUri: 'beanstalk://localhost/dev-', signingKey: 'xxxx' } }
appName eg. accounts
obj = client.getInstance('smsGenericPromotional')
obj.sendSms(params)
obj.sendMail(params)
obj.getMessagesByReferenceId(2, '["FIT_RAY_SHARE_SMS"]', (err, response)=>{
if(err){
console.log(err);
}
else{
console.log(response)}
})
Clone the repo
Finally build using npm run build
Update package in npm using npm publish
build before publish because it will publish the local lib folder.FAQs
JS client for communicator
We found that jscommunicator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
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.