Gathering detailed insights and metrics for @dolsem/serverless-offline-dynamodb-streams
Gathering detailed insights and metrics for @dolsem/serverless-offline-dynamodb-streams
Gathering detailed insights and metrics for @dolsem/serverless-offline-dynamodb-streams
Gathering detailed insights and metrics for @dolsem/serverless-offline-dynamodb-streams
Collection of serverless plugins ⚡
npm install @dolsem/serverless-offline-dynamodb-streams
Typescript
Module System
Node Version
NPM Version
JavaScript (95.41%)
Shell (4.46%)
Python (0.13%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
155 Commits
6 Branches
1 Contributors
Updated on Oct 23, 2019
Latest Version
3.0.0
Package Id
@dolsem/serverless-offline-dynamodb-streams@3.0.0
Unpacked Size
10.67 kB
Size
3.54 kB
File Count
3
NPM Version
6.11.3
Node Version
12.10.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4
1
1
This Serverless-offline-dynamodb-streams plugin emulates AWS λ and DynamoDBStreams on your local machine. To do so, it listens DynamoDBStreams stream and invokes your handlers.
Features:
First, add serverless-offline-dynamodb-streams
to your project:
1npm install serverless-offline-dynamodb-streams
Then inside your project's serverless.yml
file, add following entry to the plugins section before serverless-offline
(and after serverless-webpack
if presents): serverless-offline-dynamodb-streams
.
1plugins: 2 - serverless-webpack 3 - serverless-offline-dynamodb-streams 4 - serverless-offline
Ths configuration of function of the plugin follows the serverless documentation.
1functions: 2 myKinesisHandler: 3 handler: handler.compute 4 events: 5 - stream: 6 enabled: true 7 type: dynamodb 8 arn: arn:aws:dynamodb:eu-west-1:XXXXXX:table/myStream/stream/2018-07-02T19:48:31.121 9 batchSize: 10 10 startingPosition: TRIM_HORIZON
The configuration of aws.DynamoDBStreams
's client of the plugin is done by defining a custom: serverless-offline-dynamodb-streams
object in your serverless.yml
with your specific configuration.
You could use mhart's Dynalite with the following configuration:
1custom: 2 serverless-offline-dynamodb-streams: 3 apiVersion: '2013-12-02' 4 endpoint: http://0.0.0.0:8000 5 region: eu-west-1 6 accessKeyId: root 7 secretAccessKey: root 8 skipCacheInvalidation: false 9 readInterval: 500
arn
could be deduce fromtableName
if your add the keytableName
in your function's configuration. Useful if your use dynalite and regularly recreate a new DynamoDBStreams.
1functions: 2 myKinesisHandler: 3 handler: handler.compute 4 events: 5 - stream: 6 enabled: true 7 type: dynamodb 8 tableName: myTable
By default if function fails it will be invoked in a loop until it succeeds. You can specify a finite number of retries instead:
1custom: 2 serverless-offline-dynamodb-streams: 3 retries: 0 # disables retries
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no SAST tool detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
100 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More