Socket
Socket
Sign inDemoInstall

@halcyon-agile/node-event-sourcing

Package Overview
Dependencies
39
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.19 to 1.0.20

2

dist/ErrorStore.js

@@ -11,3 +11,3 @@ "use strict";

this.tableName = process.env.ERRORSTORE_TABLE_NAME || "ERRORSTORE_NAME";
this.tableName = `${process.env.DYNAMODB_PREFIX}_${this.tableName}`;
this.tableName = `${process.env.DYNAMODB_PREFIX || ""}${this.tableName}`;
if (String(process.env.DYNAMODB_LOCAL) === "true") {

@@ -14,0 +14,0 @@ this.service = new dynamodb_1.default({

@@ -11,3 +11,3 @@ "use strict";

this.tableName = process.env.EVENTSTORE_TABLE_NAME || "EventStore";
this.tableName = `${process.env.DYNAMODB_PREFIX}_${this.tableName}`;
this.tableName = `${process.env.DYNAMODB_PREFIX || ""}${this.tableName}`;
if (String(process.env.DYNAMODB_LOCAL) === "true") {

@@ -14,0 +14,0 @@ this.service = new dynamodb_1.default({

{
"name": "@halcyon-agile/node-event-sourcing",
"version": "1.0.19",
"version": "1.0.20",
"description": "> Opinionated OOP based node.js event sourcing library inspired by laravel-event-sourcing",

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc