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

@nlpjs/express-api-server

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nlpjs/express-api-server - npm Package Compare versions

Comparing version 4.21.1 to 4.22.0

6

package.json
{
"name": "@nlpjs/express-api-server",
"version": "4.21.1",
"version": "4.22.0",
"description": "Express API Server",

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

"dependencies": {
"@nlpjs/core": "^4.21.1",
"@nlpjs/core": "^4.22.0",
"cors": "^2.8.5",

@@ -36,3 +36,3 @@ "express": "^4.17.1"

},
"gitHead": "2efbb63222a8d8bcd4f70d41437b0fd8ebf7dcb5"
"gitHead": "725dcf52c1b521e4575edb51917690ce051b9434"
}

@@ -45,4 +45,13 @@ /*

this.app.use(express.json());
this.loadComplements();
return this.app;
}
loadComplements() {
for (let i = 0; i < this.plugins.length; i += 1) {
this.app.use(this.plugins[i]);
const plugin = this.plugins[i];
logger.debug(`Loading plugin: ${plugin.name}`);
this.app.use(plugin);
}

@@ -61,3 +70,2 @@ if (this.settings.serveBot) {

}
return this.app;
}

@@ -64,0 +72,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