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

@laconia/core

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@laconia/core - npm Package Compare versions

Comparing version 0.15.0 to 0.16.0

2

package.json
{
"name": "@laconia/core",
"version": "0.15.0",
"version": "0.16.0",
"description": "Micro dependency injection framework",

@@ -5,0 +5,0 @@ "keywords": [

@@ -27,6 +27,3 @@ const AWS = require("aws-sdk");

const coreInstances = {
env: process.env,
inputConverter: {
convert: event => event
}
env: process.env
};

@@ -33,0 +30,0 @@ this.registerInstances(coreInstances);

@@ -16,4 +16,2 @@ const CoreLaconiaContext = require("./CoreLaconiaContext");

const convertInput = event => laconiaContext.$inputConverter.convert(event);
const laconia = async (event, context, callback) => {

@@ -24,5 +22,3 @@ laconiaContext.registerInstances({ event, context });

try {
const input = await convertInput(event);
const result = await fn(input, laconiaContext);
const result = await fn(event, laconiaContext);
callback(null, result);

@@ -29,0 +25,0 @@ } catch (err) {

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