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

@xapp/dynamo-service

Package Overview
Dependencies
Maintainers
5
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@xapp/dynamo-service - npm Package Compare versions

Comparing version 0.0.19 to 0.0.21

2

package.json
{
"name": "@xapp/dynamo-service",
"version": "0.0.19",
"version": "0.0.21",
"description": "A dynamo help class which will help maintain data integrity.",

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

@@ -49,3 +49,3 @@ import { DynamoDB } from "aws-sdk";

export async function createTable(db: DynamoDB, params: DynamoDB.CreateTableInput): Promise<Table> {
console.log("Creating table " );
console.log("Creating table");
console.log(params);

@@ -62,3 +62,3 @@ const getResult = (description: DynamoDB.TableDescription) => ({

const description = await db.describeTable({ TableName: params.TableName }).promise();
console.log("Table " + params.TableName + " already exists.");
console.log("Table " + params.TableName + " already exists." );
return getResult(description.Table);

@@ -65,0 +65,0 @@ } catch (e) {

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