Gathering detailed insights and metrics for @gorillastack/serverless-offline-kinesis
Gathering detailed insights and metrics for @gorillastack/serverless-offline-kinesis
Gathering detailed insights and metrics for @gorillastack/serverless-offline-kinesis
Gathering detailed insights and metrics for @gorillastack/serverless-offline-kinesis
Collection of serverless plugins ⚡
npm install @gorillastack/serverless-offline-kinesis
Typescript
Module System
Node Version
NPM Version
45.5
Supply Chain
76.1
Quality
68.8
Maintenance
25
Vulnerability
95.9
License
JavaScript (95.76%)
Shell (4.12%)
Python (0.12%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
164 Commits
1 Watchers
3 Branches
Updated on Jan 15, 2025
Latest Version
3.0.0
Package Id
@gorillastack/serverless-offline-kinesis@3.0.0
Unpacked Size
11.59 kB
Size
3.92 kB
File Count
3
NPM Version
6.11.3
Node Version
8.16.1
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
2
This Serverless-offline-kinesis plugin emulates AWS λ and Kinesis streams on your local machine. To do so, it listens Kinesis stream and invokes your handlers.
Features:
First, add serverless-offline-kinesis
to your project:
1npm install serverless-offline-kinesis
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-kinesis
.
1plugins: 2 - serverless-webpack 3 - serverless-offline-kinesis 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: kinesis 8 arn: arn:aws:kinesis:eu-west-1:XXXXXX:stream/polls 9 batchSize: 10 10 startingPosition: TRIM_HORIZON
The configuration of aws.Kinesis
's client of the plugin is done by defining a custom: serverless-offline-kinesis
object in your serverless.yml
with your specific configuration.
You could use mhart's Kinesalite with the following configuration:
1custom: 2 serverless-offline-kinesis: 3 apiVersion: '2013-12-02' 4 endpoint: http://0.0.0.0:4567 5 region: eu-west-1 6 accessKeyId: root 7 secretAccessKey: root 8 skipCacheInvalidation: false 9 readInterval: 500
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 1/18 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is archived
Details
Reason
license file not detected
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
127 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