New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nlpjs/console-connector

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nlpjs/console-connector - npm Package Compare versions

Comparing version 4.0.0-rc.10 to 4.0.0-rc.12

6

package.json
{
"name": "@nlpjs/console-connector",
"version": "4.0.0-rc.10",
"version": "4.0.0-rc.12",
"description": "Console Connector",

@@ -28,5 +28,5 @@ "author": {

"dependencies": {
"@nlpjs/core": "^4.0.0-rc.10"
"@nlpjs/core": "^4.0.0-rc.12"
},
"gitHead": "575769bb2021d6c0629ffbd5b326334b719d40d5"
"gitHead": "7ea0bf4d5fb079352f11d441fd08b3817c3f0855"
}

@@ -70,3 +70,3 @@ /*

hear(line) {
async hear(line) {
if (this.onHear) {

@@ -78,5 +78,19 @@ this.onHear(this, line);

if (pipeline) {
this.container.runPipeline(pipeline, { message: line }, this);
this.container.runPipeline(
pipeline,
{ message: line, channel: 'console', app: this.container.name },
this
);
} else {
console.error(`There is no pipeline for ${name}`);
const nlp = this.container.get('nlp');
if (nlp) {
const result = await nlp.process({
message: line,
channel: 'console',
app: this.container.name,
});
this.say(result.answer);
} else {
console.error(`There is no pipeline for ${name}`);
}
}

@@ -83,0 +97,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc