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

graphed

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphed - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

handlers/index.js

14

index.js

@@ -1,9 +0,15 @@

const Edge = require('./lib/Edge');
const DynamoDBStore = require('./lib/DynamoDbStore');
const util = require('./lib/util');
const {
linkFirehose
} = require('./handlers');
const {
DynamoDbStore,
Edge,
util
} = require('./models');
module.exports = {
DynamoDbStore,
Edge,
DynamoDBStore,
linkFirehose,
util
};
{
"name": "graphed",
"version": "1.0.1",
"description": "Minimum graph's data structure implemented with pluggable stores (redis, dynamodb, memory, ...)",
"version": "1.0.2",
"description": "Minimum graph's data structure implemented with pluggable stores (redis, dynamodb, memory, ...) and compatible with AWS Firehose",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.568.0",
"@hapi/joi": "^16.1.8",
"aws-sdk": "^2.585.0",
"lodash": "^4.17.15",
"rxjs": "^6.5.3",
"rxjs-dynamodb-client": "^1.0.1"
"rxjs-dynamodb-client": "^1.0.6"
},

@@ -15,3 +16,3 @@ "devDependencies": {

"chai-subset": "^1.6.0",
"eslint": "^6.6.0",
"eslint": "^6.7.2",
"mocha": "^6.2.2",

@@ -18,0 +19,0 @@ "nyc": "^14.1.1",

@@ -6,4 +6,4 @@ const AWS = require('aws-sdk');

const {
DynamoDBStore
} = require('../');
DynamoDbStore
} = require('../models');

@@ -20,3 +20,3 @@ class App {

this.store = new DynamoDBStore({
this.store = new DynamoDbStore({
dynamoDb: this.dynamoDb,

@@ -23,0 +23,0 @@ tableName: 'graph'

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