
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
appframe-nats
Advanced tools
NATS Plugin for Appframe on NPM
This api is mounted at app.nats to access these methods:
app.nats.publish(subject, message, callback)Sends a message to a subscriber. Expects no response. Callback issued when message is sent to the NATS server. No guarantee of receipt.
subject string - subject to publish message tomessage object|array|string|buffer - Message body for published messagecallback function - Optional callback fired when sentapp.nats.request(subject, message, options, callback, updateCallback)Sends a message to a subscriber with the expectation of at least one reply. Main callback only listens for the final reply. Can get updates to provide realtime stats/progress and/or acknowledgments to reset timeouts. Returns event emitter for update, ack, response, & timeout events.
subject string - subject to publish message tomessage object|array|string|buffer - Message body for published messageoptions object - Options passed to PUB method.
max number - Number of replies to receive before unsubscribing from replies, optionaltimeout number - Number of ms to wait until firing a timeout error. If omitted it will default to config settings. Setting to falsey value will disable timeoutcallback function - Optional callback fired when final response is sent. Callback includes two arguments
err error|null - If the response failed via timeout or was reported as an error from the response.results *object|array|string|buffer - Response bodyupdateCallback function - Optional callback fired when update is sent. Callback includes one argument
results *object|array|string|buffer - Response bodyapp.nats.request('lookup', {
domain: "google.com"
}, function(err, results){
if(err){
return console.error('ERROR', err);
}
console.log('Lookup results', results);
}, function(update){
console.log('update', update);
});
app.nats.subscribe(subject, options, callback, updateCallback)Sends a message to a subscriber with the expectation of at least one reply. Main callback only listens for the final reply. Can get updates to provide realtime stats/progress and/or acknowledgments to reset timeouts. Returns event emitter for update, ack, response, & timeout events.
subject string - subject to subscribe tooptions object - Options passed to PUB method.
queue string - Name of queue to joinmax number - Maximum number of messages to receive before automatically unsubscribing.noAck boolean - Prevents automatic ack message when set to true. Defaults to false.noPrefix string - Prevents configurable prefix string from adding to subject. Defaults to false.callback function - callback fired when messages are received. Callback includes two arguments
response object|array|string|buffer - Message bodyhandler eventEmitter - Event emitter with helper methods to handle updates, acks, and replies.
ack - timeout int: Resets the timeout for the request. If not timeout is specified it will reset the timer that was used by the requester. timeout is in ms.update - data string: Sends a message with data update the request. Also resets the timeout.response - err error|null, results object|array|string|buffer: Sends an error or response to the requestack(): Tells the request to reset timeout, has no body or data to sendupdate(data *string*): Sends a message with data update the request. Also resets the timeout.response(err *error|null*, results *object|array|string|buffer*): Sends an error or response to the requestsubject string - Copy of the message subject. Useful for wildcard subscriptions. Does not include prefix where applicable.app.nats.handle('lookup', {
queue: "dns.lookup"
}, function(msg, handler){
setTimeout(function(){
handler.ack();
}, 2500);
setTimeout(function(){
handler.update({
pending: true
});
}, 5000);
setTimeout(function(){
handler.response(null, msg);
}, 7500);
});
FAQs
NATS Plugin for Appframe on NPM
We found that appframe-nats demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.