Gathering detailed insights and metrics for @ndkode/serverless-offline-dynamodb-streams
Gathering detailed insights and metrics for @ndkode/serverless-offline-dynamodb-streams
Gathering detailed insights and metrics for @ndkode/serverless-offline-dynamodb-streams
Gathering detailed insights and metrics for @ndkode/serverless-offline-dynamodb-streams
Collection of serverless plugins ⚡
npm install @ndkode/serverless-offline-dynamodb-streams
Typescript
Module System
Min. Node Version
Node Version
NPM Version
serverless-offline-dynamodb-streams@3.0.0
Updated on Sep 30, 2019
serverless-offline-kinesis@3.0.0
Updated on Sep 30, 2019
serverless-offline-sqs@3.0.0
Updated on Sep 30, 2019
serverless-offline-ssm-provider@2.0.0
Updated on Sep 30, 2019
serverless-offline-dynamodb-streams@1.6.0
Updated on Apr 29, 2019
serverless-offline-kinesis@1.6.0
Updated on Apr 29, 2019
JavaScript (96.18%)
Shell (3.72%)
Python (0.1%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
232 Stars
252 Commits
136 Forks
11 Watchers
10 Branches
52 Contributors
Updated on May 01, 2025
Latest Version
7.0.0
Package Id
@ndkode/serverless-offline-dynamodb-streams@7.0.0
Unpacked Size
13.72 kB
Size
4.29 kB
File Count
6
NPM Version
lerna/7.4.2/node@v20.10.0+x64 (win32)
Node Version
20.10.0
Published on
Jan 25, 2024
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 present): 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
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 5/30 approved changesets -- score normalized to 1
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
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
28 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