Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@kolinalabs/nodejs-api-pack

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kolinalabs/nodejs-api-pack - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

2

package.json
{
"name": "@kolinalabs/nodejs-api-pack",
"version": "1.0.4",
"version": "1.0.5",
"description": "Basic API flow helper for NodeJS",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -11,2 +11,3 @@ const { Method, Type } = require("./enums");

this.operation = {};
this.routeChecker = null;
}

@@ -43,2 +44,6 @@

getRouteChecker() {
return this.routeChecker;
}
getOperationChecker() {

@@ -109,2 +114,10 @@ return this.checkers[0] || null;

async checkRoute() {
const checker = this.getRouteChecker();
if (!checker) {
return;
}
await checker.checkRoute(this.operation);
}
async check() {

@@ -111,0 +124,0 @@ const checker = this.getOperationChecker();

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