This repository has been archived by the owner on Feb 2, 2023. It is now read-only.
forked from serverless/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.json
762 lines (762 loc) · 33.8 KB
/
plugins.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
[
{
"name": "serverless-appsync-plugin",
"description": "Serverless Plugin to deploy AppSync GraphQL API",
"githubUrl": "https://github.com/sid88in/serverless-appsync-plugin"
},
{
"name": "serverless-cloudformation-parameter-setter",
"description": "Set CloudFormation parameters when deploying.",
"githubUrl": "https://github.com/trek10inc/serverless-cloudformation-parameter-setter"
},
{
"name": "serverless-alexa-skills",
"description": "Manage your Alexa Skills with Serverless Framework.",
"githubUrl": "https://github.com/marcy-terui/serverless-alexa-skills"
},
{
"name": "serverless-plugin-chrome",
"description": "Plugin which bundles and ensures that Headless Chrome/Chromium is running when your AWS Lambda function handler is invoked.",
"githubUrl": "https://github.com/adieuadieu/serverless-chrome/tree/master/packages/serverless-plugin"
},
{
"name": "serverless-ssm-fetch",
"description": "Sets \"AWS Systems Manager Parameter Store (SSM)\" parameters into functions' environment variables.",
"githubUrl": "https://github.com/gozup/serverless-ssm-fetch"
},
{
"name": "serverless-custom-packaging-plugin",
"description": "Plugin to package your sourcecode using a custom target path inside the zip.",
"githubUrl": "https://github.com/hypoport/serverless-custom-packaging-plugin"
},
{
"name": "serverless-apigw-binary",
"description": "Plugin to enable binary support in AWS API Gateway.",
"githubUrl": "https://github.com/maciejtreder/serverless-apigw-binary"
},
{
"name": "serverless-domain-manager",
"description": "Serverless plugin for managing custom domains with API Gateways.",
"githubUrl": "https://github.com/amplify-education/serverless-domain-manager"
},
{
"name": "serverless-log-forwarding",
"description": "Serverless plugin for forwarding CloudWatch logs to another Lambda function.",
"githubUrl": "https://github.com/amplify-education/serverless-log-forwarding"
},
{
"name": "serverless-plugin-external-sns-events",
"description": "Add ability for functions to use existing or external SNS topics as an event source",
"githubUrl": "https://github.com/silvermine/serverless-plugin-external-sns-events"
},
{
"name": "serverless-plugin-write-env-vars",
"description": "Write environment variables out to a file that is compatible with dotenv",
"githubUrl": "https://github.com/silvermine/serverless-plugin-write-env-vars"
},
{
"name": "serverless-alexa-plugin",
"description": "Serverless plugin to support Alexa Lambda events",
"githubUrl": "https://github.com/rajington/serverless-alexa-plugin"
},
{
"name": "serverless-build-plugin",
"description": "A Node.js focused build plugin for serverless.",
"githubUrl": "https://github.com/nfour/serverless-build-plugin"
},
{
"name": "serverless-resources-env",
"description": "After Deploy, this plugin fetches cloudformation resource identifiers and sets them on AWS lambdas, and creates local .<state>-env file",
"githubUrl": "https://github.com/rurri/serverless-resources-env"
},
{
"name": "serverless-event-constant-inputs",
"description": "Allows you to add constant inputs to events in Serverless 1.0. For more info see [constant values in Cloudwatch](https://aws.amazon.com/blogs/compute/simply-serverless-use-constant-values-in-cloudwatch-event-triggered-lambda-functions/)",
"githubUrl": "https://github.com/dittto/serverless-event-constant-inputs"
},
{
"name": "serverless-kms-secrets",
"description": "Allows to easily encrypt and decrypt secrets using KMS from the serverless CLI",
"githubUrl": "https://github.com/SC5/serverless-kms-secrets"
},
{
"name": "serverless-plugin-stack-outputs",
"description": "Displays stack outputs for your serverless stacks when `sls info` is ran",
"githubUrl": "https://github.com/svdgraaf/serverless-plugin-stack-outputs"
},
{
"name": "serverless-plugin-stage-variables",
"description": "Add stage variables for Serverless 1.x to ApiGateway, so you can use variables in your Lambda's",
"githubUrl": "https://github.com/svdgraaf/serverless-plugin-stage-variables"
},
{
"name": "serverless-plugin-cloudwatch-sumologic",
"description": "Plugin which auto-subscribes a log delivery lambda function to lambda log groups created by serverless",
"githubUrl": "https://github.com/ACloudGuru/serverless-plugin-cloudwatch-sumologic"
},
{
"name": "serverless-plugin-aws-alerts",
"description": "A Serverless plugin to easily add CloudWatch alarms to functions",
"githubUrl": "https://github.com/ACloudGuru/serverless-plugin-aws-alerts"
},
{
"name": "serverless-plugin-package-dotenv-file",
"description": "A Serverless plugin to copy a .env file into the serverless package",
"githubUrl": "https://github.com/ACloudGuru/serverless-plugin-package-dotenv-file"
},
{
"name": "serverless-command-line-event-args",
"description": "This module is Serverless Framework plugin. Event JSON passes to your Lambda function in commandline.",
"githubUrl": "https://github.com/horike37/serverless-command-line-event-args"
},
{
"name": "serverless-dynamodb-local",
"description": "Serverless Dynamodb Local Plugin - Allows to run dynamodb locally for serverless",
"githubUrl": "https://github.com/99xt/serverless-dynamodb-local"
},
{
"name": "serverless-offline",
"description": "Emulate AWS λ and API Gateway locally when developing your Serverless project",
"githubUrl": "https://github.com/dherault/serverless-offline"
},
{
"name": "serverless-offline-ssm",
"description": "Read SSM parameters from a .env file instead of AWS",
"githubUrl": "https://github.com/janders223/serverless-offline-ssm"
},
{
"name": "serverless-offline-direct-lambda",
"description": "Allow offline direct lambda-to-lambda interactions by exposing lambdas with no API Gateway event via HTTP.",
"githubUrl": "https://github.com/civicteam/serverless-offline-direct-lambda"
},
{
"name": "serverless-plugin-simulate",
"description": "Simulate AWS Lambda and API Gateway locally using Docker",
"githubUrl": "https://github.com/gertjvr/serverless-plugin-simulate"
},
{
"name": "serverless-plugin-optimize",
"description": "Bundle with Browserify, transpile with Babel to ES5 and minify with Uglify your Serverless functions.",
"githubUrl": "https://github.com/FidelLimited/serverless-plugin-optimize"
},
{
"name": "serverless-plugin-select",
"description": "Select which functions are to be deployed based on region and stage.",
"githubUrl": "https://github.com/FidelLimited/serverless-plugin-select"
},
{
"name": "serverless-plugin-warmup",
"description": "Keep your lambdas warm during Winter.",
"githubUrl": "https://github.com/FidelLimited/serverless-plugin-warmup"
},
{
"name": "serverless-plugin-browserify",
"description": "Speed up your node based lambda's",
"githubUrl": "https://github.com/doapp-ryanp/serverless-plugin-browserify"
},
{
"name": "serverless-plugin-diff",
"description": "Compares your local AWS CloudFormation templates against deployed ones.",
"githubUrl": "https://github.com/nicka/serverless-plugin-diff"
},
{
"name": "serverless-run-function-plugin",
"description": "Run serverless function locally",
"githubUrl": "https://github.com/lithin/serverless-run-function-plugin"
},
{
"name": "serverless-scriptable-plugin",
"description": "Customize Serverless behavior without writing a plugin.",
"githubUrl": "https://github.com/weixu365/serverless-scriptable-plugin"
},
{
"name": "serverless-subscription-filter",
"description": "Serverless plugin to register subscription filter for Lambda logs. Register and pipe the logs of one lambda to another to process.",
"githubUrl": "https://github.com/blackevil245/serverless-subscription-filter"
},
{
"name": "serverless-webpack",
"description": "Serverless plugin to bundle your lambdas with Webpack",
"githubUrl": "https://github.com/serverless-heaven/serverless-webpack"
},
{
"name": "serverless-wsgi",
"description": "Serverless plugin to deploy WSGI applications (Flask/Django/Pyramid etc.) and bundle Python packages",
"githubUrl": "https://github.com/logandk/serverless-wsgi"
},
{
"name": "serverless-crypt",
"description": "Securing the secrets on Serverless Framework by AWS KMS encryption.",
"githubUrl": "https://github.com/marcy-terui/serverless-crypt"
},
{
"name": "serverless-plugin-multiple-responses",
"description": "Enable multiple content-types for Response template ",
"githubUrl": "https://github.com/silvermine/serverless-plugin-multiple-responses"
},
{
"name": "serverless-plugin-include-dependencies",
"description": "This is a Serverless plugin that should make your deployed functions smaller.",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-include-dependencies"
},
{
"name": "serverless-mocha-plugin",
"description": "A Serverless Plugin for the Serverless Framework which adds support for test-driven development using Mocha",
"githubUrl": "https://github.com/SC5/serverless-mocha-plugin"
},
{
"name": "serverless-jest-plugin",
"description": "A Serverless Plugin for the Serverless Framework which adds support for test-driven development using Jest",
"githubUrl": "https://github.com/SC5/serverless-jest-plugin"
},
{
"name": "serverless-plugin-cfauthorizer",
"description": "This plugin allows you to define your own API Gateway Authorizers as the Serverless CloudFormation resources and apply them to HTTP endpoints.",
"githubUrl": "https://github.com/SC5/serverless-plugin-cfauthorizer"
},
{
"name": "serverless-cloudformation-changesets",
"description": "Natively deploy to CloudFormation via Change sets, instead of directly. Allowing you to queue changes, and safely require escalated roles for final deployment.",
"githubUrl": "https://github.com/trek10inc/serverless-cloudformation-changesets"
},
{
"name": "serverless-aws-documentation",
"description": "Serverless plugin to add documentation and models to the serverless generated API Gateway",
"githubUrl": "https://github.com/9cookies/serverless-aws-documentation"
},
{
"name": "raml-serverless",
"description": "Serverless plugin to work with RAML API spec documents",
"githubUrl": "https://github.com/andrewcurioso/raml-serverless"
},
{
"name": "serverless-python-requirements",
"description": "Serverless plugin to bundle Python packages",
"githubUrl": "https://github.com/UnitedIncome/serverless-python-requirements"
},
{
"name": "serverless-multi-dotnet",
"description": "A serverless plugin to pack C# lambdas functions that are spread to multiple CS projects.",
"githubUrl": "https://github.com/tsibelman/serverless-multi-dotnet"
},
{
"name": "serverless-dotnet",
"description": "A serverless plugin to run 'dotnet' commands as part of the deploy process",
"githubUrl": "https://github.com/fruffin/serverless-dotnet"
},
{
"name": "serverless-enable-api-logs",
"description": "Enables Coudwatch logging for API Gateway events",
"githubUrl": "https://github.com/paulSambolin/serverless-enable-api-logs"
},
{
"name": "serverless-python-individually",
"description": "A serverless framework plugin to install multiple lambda functions written in python",
"githubUrl": "https://github.com/cfchou/serverless-python-individually"
},
{
"name": "serverless-plugin-subscription-filter",
"description": "A serverless plugin to register AWS CloudWatchLogs subscription filter",
"githubUrl": "https://github.com/tsub/serverless-plugin-subscription-filter"
},
{
"name": "serverless-step-functions",
"description": "AWS Step Functions with Serverless Framework.",
"githubUrl": "https://github.com/horike37/serverless-step-functions"
},
{
"name": "serverless-plugin-scripts",
"description": "Add scripting capabilities to the Serverless Framework",
"githubUrl": "https://github.com/mvila/serverless-plugin-scripts"
},
{
"name": "serverless-plugin-bind-deployment-id",
"description": "A Serverless plugin to bind the randomly generated deployment resource to your custom resources",
"githubUrl": "https://github.com/jacob-meacham/serverless-plugin-bind-deployment-id"
},
{
"name": "serverless-plugin-git-variables",
"description": "A Serverless plugin to expose git variables (branch name, HEAD description, full commit hash) to your serverless services",
"githubUrl": "https://github.com/jacob-meacham/serverless-plugin-git-variables"
},
{
"name": "serverless-plugin-graphiql",
"description": "A Serverless plugin to run a local http server for graphiql and your graphql handler",
"githubUrl": "https://github.com/bencooling/serverless-plugin-graphiql"
},
{
"name": "serverless-coffeescript",
"description": "A Serverless plugin to compile your CoffeeScript into JavaScript at deployment",
"githubUrl": "https://github.com/duanefields/serverless-coffeescript"
},
{
"name": "serverless-plugin-lambda-dead-letter",
"description": "A Serverless plugin that can configure a lambda with a dead letter queue or topic",
"githubUrl": "https://github.com/gmetzker/serverless-plugin-lambda-dead-letter"
},
{
"name": "serverless-plugin-encode-env-var-objects",
"description": "Serverless plugin to encode any environment variable objects.",
"githubUrl": "https://github.com/yonomi/serverless-plugin-encode-env-var-objects"
},
{
"name": "serverless-dir-config-plugin",
"description": "EXPERIMENTAL - Serverless plugin to load function and resource definitions from a directory.",
"githubUrl": "https://github.com/economysizegeek/serverless-dir-config-plugin"
},
{
"name": "serverless-cljs-plugin",
"description": "Enables Clojurescript as an implementation language for Lambda handlers",
"githubUrl": "https://github.com/nervous-systems/serverless-cljs-plugin"
},
{
"name": "serverless-prune-plugin",
"description": "Deletes old versions of functions from AWS, preserving recent and aliased versions",
"githubUrl": "https://github.com/claygregory/serverless-prune-plugin"
},
{
"name": "serverless-offline-scheduler",
"description": "Runs scheduled functions offline while integrating with serverless-offline",
"githubUrl": "https://github.com/ajmath/serverless-offline-scheduler"
},
{
"name": "serverless-aws-alias",
"description": "This plugin enables use of AWS aliases on Lambda functions.",
"githubUrl": "https://github.com/HyperBrain/serverless-aws-alias"
},
{
"name": "serverless-plugin-webpack",
"description": "A serverless plugin to automatically bundle your functions individually with webpack",
"githubUrl": "https://github.com/goldwasserexchange/serverless-plugin-webpack"
},
{
"name": "serverless-sqs-fifo",
"description": "A serverless plugin to handle creation of sqs fifo queue's in aws (stop-gap)",
"githubUrl": "https://github.com/vortarian/serverless-sqs-fifo"
},
{
"name": "serverless-sqs-alarms-plugin",
"description": "Wrapper to setup CloudWatch Alarms on SQS queue length",
"githubUrl": "https://github.com/sbstjn/serverless-sqs-alarms-plugin"
},
{
"name": "serverless-dotenv",
"description": "Fetch environment variables and write it to a .env file",
"githubUrl": "https://github.com/Jimdo/serverless-dotenv"
},
{
"name": "serverless-haskell",
"description": "Deploying Haskell applications to AWS Lambda with Serverless",
"githubUrl": "https://github.com/seek-oss/serverless-haskell"
},
{
"name": "serverless-hooks-plugin",
"description": "Run arbitrary commands on any lifecycle event in serverless",
"githubUrl": "https://github.com/uswitch/serverless-hooks-plugin"
},
{
"name": "serverless-dynalite",
"description": "Run dynalite locally (no JVM, all JS) to simulate DynamoDB. Watch serverless.yml for table config updates.",
"githubUrl": "https://github.com/sdd/serverless-dynalite"
},
{
"name": "serverless-apig-s3",
"description": "Serve static front-end content from S3 via the API Gateway and deploy client bundle to S3.",
"githubUrl": "https://github.com/sdd/serverless-apig-s3"
},
{
"name": "serverless-plugin-typescript",
"description": "Serverless plugin for zero-config Typescript support.",
"githubUrl": "https://github.com/graphcool/serverless-plugin-typescript"
},
{
"name": "serverless-parameters",
"description": "Add parameters to the generated cloudformation templates",
"githubUrl": "https://github.com/svdgraaf/serverless-parameters"
},
{
"name": "serverless-pseudo-parameters",
"description": "Use ${AWS::AccountId} and other cloudformation pseudo parameters in your serverless.yml values",
"githubUrl": "https://github.com/svdgraaf/serverless-pseudo-parameters"
},
{
"name": "serverless-dynamodb-ttl",
"description": "Configure DynamoDB TTL in serverless.yml (until CloudFormation supports this).",
"githubUrl": "https://github.com/Jimdo/serverless-dynamodb-ttl"
},
{
"name": "serverless-api-stage",
"description": "Serverless API Stage plugin, enables stage variables and logging for AWS API Gateway.",
"githubUrl": "https://github.com/leftclickben/serverless-api-stage"
},
{
"name": "serverless-export-env",
"description": "Export environment variables into a .env file with automatic AWS CloudFormation reference resolution.",
"githubUrl": "https://github.com/arabold/serverless-export-env"
},
{
"name": "serverless-package-python-functions",
"description": "Packaging Python Lambda functions with only the dependencies/requirements they need.",
"githubUrl": "https://github.com/ubaniabalogun/serverless-package-python-functions"
},
{
"name": "serverless-plugin-iopipe",
"description": "See inside your Lambda functions with high fidelity metrics and monitoring.",
"githubUrl": "https://github.com/iopipe/serverless-plugin-iopipe"
},
{
"name": "serverless-plugin-metric",
"description": "Creates dynamically AWS metric-filter resources with custom patterns",
"githubUrl": "https://github.com/alex20465/serverless-plugin-metric"
},
{
"name": "serverless-sam",
"description": "Exports an AWS SAM template for a service created with the Serverless Framework.",
"githubUrl": "https://github.com/SAPessi/serverless-sam"
},
{
"name": "serverless-vpc-discovery",
"description": "Serverless plugin for discovering VPC / Subnet / Security Group configuration by name.",
"githubUrl": "https://github.com/amplify-education/serverless-vpc-discovery"
},
{
"name": "serverless-kubeless",
"description": "Serverless plugin for deploying functions to Kubeless.",
"githubUrl": "https://github.com/serverless/serverless-kubeless"
},
{
"name": "serverless-apigwy-binary",
"description": "Serverless plugin for configuring API Gateway to return binary responses",
"githubUrl": "https://github.com/ryanmurakami/serverless-apigwy-binary"
},
{
"name": "serverless-plugin-browserifier",
"description": "Reduce the size and speed up your Node.js based lambda's using browserify.",
"githubUrl": "https://github.com/digitalmaas/serverless-plugin-browserifier"
},
{
"name": "serverless-shell",
"description": "Drop to a runtime shell with all the environment variables set that you'd have in lambda.",
"githubUrl": "https://github.com/UnitedIncome/serverless-shell"
},
{
"name": "serverless-stack-output",
"description": "Store output from your AWS CloudFormation Stack in JSON/YAML/TOML files, or to pass it to a JavaScript function for further processing.",
"githubUrl": "https://github.com/sbstjn/serverless-stack-output"
},
{
"name": "serverless-gulp",
"description": "A thin task wrapper around @goserverless that allows you to automate build, test and deploy tasks using gulp",
"githubUrl": "https://github.com/rhythminme/serverless-gulp"
},
{
"name": "serverless-sentry",
"description": "Automatic monitoring of memory usage, execution timeouts and forwarding of Lambda errors to Sentry (https://sentry.io).",
"githubUrl": "https://github.com/arabold/serverless-sentry-plugin"
},
{
"name": "serverless-env-generator",
"description": "Manage environment variables with YAML and load them with dotenv. Supports variable encryption with KMS, multiple stages and custom profiles.",
"githubUrl": "https://github.com/DieProduktMacher/serverless-env-generator"
},
{
"name": "serverless-local-dev-server",
"description": "Speeds up development of Alexa Skills, Chatbots and APIs by exposing your functions as local HTTP endpoints and mapping received events.",
"githubUrl": "https://github.com/DieProduktMacher/serverless-local-dev-server"
},
{
"name": "serverless-plugin-stack-config",
"description": "A serverless plugin to manage configurations for a stack across micro-services.",
"githubUrl": "https://github.com/rawphp/serverless-plugin-stack-config"
},
{
"name": "serverless-plugin-elastic-beanstalk",
"description": "A serverless plugin to deploy applications to AWS ElasticBeanstalk.",
"githubUrl": "https://github.com/rawphp/serverless-plugin-elastic-beanstalk"
},
{
"name": "serverless-s3-remover",
"description": "A serverless plugin to make s3 buckets empty before deleting cloudformation stack when ```sls remove```",
"githubUrl": "https://github.com/sinofseven/serverless-s3-remover"
},
{
"name": "serverless-dynamodb-autoscaling",
"description": "Configure Amazon DynamoDB's native Auto Scaling for your table capacities.",
"githubUrl": "https://github.com/sbstjn/serverless-dynamodb-autoscaling"
},
{
"name": "serverless-plugin-bespoken",
"description": "Creates a local server and a proxy so you don't have to deploy anytime you want to test your code",
"githubUrl": "https://github.com/bespoken/serverless-plugin-bespoken"
},
{
"name": "serverless-s3bucket-sync",
"description": "Sync a local folder with a S3 bucket after sls deploy",
"githubUrl": "https://github.com/sbstjn/serverless-s3bucket-sync"
},
{
"name": "serverless-s3-sync",
"description": "A plugin to sync local directories and S3 prefixes for Serverless Framework,",
"githubUrl": "https://github.com/k1LoW/serverless-s3-sync"
},
{
"name": "serverless-nested-stack",
"description": "A plugin to Workaround for Cloudformation 200 resource limit",
"githubUrl": "https://github.com/jagdish-176/serverless-nested-stack"
},
{
"name": "serverless-plugin-common-excludes",
"description": "Adds commonly excluded files to package.excludes",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-common-excludes"
},
{
"name": "serverless-plugin-custom-domain",
"description": "Reliably sets a BasePathMapping to an API Gateway Custom Domain",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-custom-domain"
},
{
"name": "serverless-plugin-split-stacks",
"description": "Migrate certain resources to nested stacks",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-split-stacks"
},
{
"name": "serverless-plugin-log-subscription",
"description": "Adds a CloudWatch LogSubscription for functions",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-log-subscription"
},
{
"name": "serverless-cf-vars",
"description": "Enables use of AWS pseudo functions and Fn::Sub string substitution",
"githubUrl": "https://gitlab.com/kabo/serverless-cf-vars"
},
{
"name": "serverless-apigateway-plugin",
"description": "Configure the AWS api gateway: Binary support, Headers and Body template mappings",
"githubUrl": "https://github.com/GFG/serverless-apigateway-plugin"
},
{
"name": "serverless-plugin-deploy-environment",
"description": "Plugin to manage deployment environment across stages",
"githubUrl": "https://github.com/DopplerLabs/serverless-plugin-deploy-environment"
},
{
"name": "serverless-plugin-aws-resolvers",
"description": "Resolves variables from ESS, RDS, or Kinesis for serverless services",
"githubUrl": "https://github.com/DopplerLabs/serverless-plugin-aws-resolvers"
},
{
"name": "serverless-plugin-offline-kinesis-events",
"description": "Plugin that works with serverless-offline to allow offline testing of serverless functions that are triggered by Kinesis events.",
"githubUrl": "https://github.com/DopplerLabs/serverless-plugin-offline-kinesis-events"
},
{
"name": "serverless-micro",
"description": "Plugin to help manage multiple micro services under one main service.",
"githubUrl": "https://github.com/barstoolsports/serverless-micro"
},
{
"name": "serverless-api-cloudfront",
"description": "Plugin that adds CloudFront distribution in front of your API Gateway for custom domain, CDN caching and access log.",
"githubUrl": "https://github.com/Droplr/serverless-api-cloudfront"
},
{
"name": "serverless-offline-sns",
"description": "Serverless plugin to run a local SNS server and call serverless SNS handlers with events notifications.",
"githubUrl": "https://github.com/mj1618/serverless-offline-sns"
},
{
"name": "serverless-plugin-api-docs",
"description": "Serverless plugin to automatically create a lambda function which returns Swagger-UI HTML API Documentation Page based on the given swagger spec JSON file.",
"githubUrl": "https://github.com/8select/serverless-plugin-api-docs"
},
{
"name": "serverless-stage-manager",
"description": "Super simple Serverless plugin for validating stage names before deployment",
"githubUrl": "https://github.com/jeremydaly/serverless-stage-manager"
},
{
"name": "serverless-spa",
"description": "Serverless plugin to deploy your website to AWS S3 using Webpack to bundle it.",
"githubUrl": "https://github.com/gilmarsquinelato/serverless-spa"
},
{
"name": "serverless-aws-nested-stacks",
"description": "Yet another AWS nested stack plugin!",
"githubUrl": "https://github.com/concon121/serverless-plugin-nested-stacks"
},
{
"name": "serverless-aws-resource-names",
"description": "Serverless plugin to alter the default naming conventions for sls resources via a simple mapping file.",
"githubUrl": "https://github.com/concon121/serverless-plugin-aws-resource-names"
},
{
"name": "serverless-attach-managed-policy",
"description": "A Serverless plugin to automatically attach an AWS Managed IAM Policy (or Policies) to all IAM Roles created by the Service.",
"githubUrl": "https://github.com/Nordstrom/serverless-attach-managed-policy"
},
{
"name": "serverless-plugin-reducer",
"description": "Reduce Node.js lambda package so it contains only lambda dependencies",
"githubUrl": "https://github.com/medikoo/serverless-plugin-reducer"
},
{
"name": "serverless-plugin-transpiler",
"description": "Transpile lambda files during packaging step",
"githubUrl": "https://github.com/medikoo/serverless-plugin-transpiler"
},
{
"name": "serverless-plugin-dynamodb-autoscaling",
"description": "Auto generate auto scaling configuration for configured DynamoDB tables",
"githubUrl": "https://github.com/medikoo/serverless-plugin-dynamodb-autoscaling"
},
{
"name": "serverless-plugin-vpc-eni-cleanup",
"description": "Automatic cleanup of VPC network interfaces on stage removal",
"githubUrl": "https://github.com/medikoo/serverless-plugin-vpc-eni-cleanup"
},
{
"name": "serverless-plugin-tracer",
"description": "Trace serverless hooks as they execute",
"githubUrl": "https://github.com/enykeev/serverless-plugin-tracer/"
},
{
"name": "serverless-plugin-stackstorm",
"description": "Reusable Functions from StackStorm Exchange",
"githubUrl": "https://github.com/StackStorm/serverless-plugin-stackstorm"
},
{
"name": "serverless-iot-local",
"description": "AWS Iot events with serverless-offline",
"githubUrl": "https://github.com/tradle/serverless-iot-local"
},
{
"name": "serverless-sns-filter",
"description": "Serverless plugin to add SNS Subscription Filters to events",
"githubUrl": "https://github.com/MechanicalRock/serverless-sns-filter"
},
{
"name": "serverless-reqvalidator-plugin",
"description": "Serverless plugin to add request validator to API Gateway methods",
"githubUrl": "https://github.com/RafPe/serverless-reqvalidator-plugin"
},
{
"name": "serverless-ephemeral",
"description": "Build and include custom stateless libraries for any language",
"githubUrl": "https://github.com/Accenture/serverless-ephemeral"
},
{
"name": "serverless-content-encoding",
"description": "Enable Content Encoding in AWS API Gateway during deployment",
"githubUrl": "https://github.com/xeno-dohai/serverless-content-encoding"
},
{
"name": "serverless-s3-encryption",
"description": "Set or remove the encryption settings on your s3 buckets",
"githubUrl": "https://github.com/tradle/serverless-s3-encryption"
},
{
"name": "serverless-plugin-inject-dependencies",
"description": "Painlessly deploy serverless projects with only the required dependencies.",
"githubUrl": "https://github.com/loanmarket/serverless-plugin-inject-dependencies"
},
{
"name": "serverless-plugin-provider-groups",
"description": "A plugin to allow management of grouped settings within large serverless projects.",
"githubUrl": "https://github.com/loanmarket/serverless-plugin-provider-groups"
},
{
"name": "serverless-cloudformation-resource-counter",
"description": "A plugin to count the resources generated in the AWS CloudFormation stack after deployment.",
"githubUrl": "https://github.com/drexler/serverless-cloudformation-resource-counter"
},
{
"name": "serverless-iam-roles-per-function",
"description": "Serverless Plugin for easily defining IAM roles per function via the use of iamRoleStatements at the function level.",
"githubUrl": "https://github.com/functionalone/serverless-iam-roles-per-function"
},
{
"name": "serverless-functions-base-path",
"description": "Easily define a base path where your serverless functions are located.",
"githubUrl": "https://github.com/kevinrambaud/serverless-functions-base-path"
},
{
"name": "serverless-static",
"description": "Easily serve files from a folder while developing on localhost with the serverless-offline plugin",
"githubUrl": "https://github.com/iliasbhal/serverless-static"
},
{
"name": "serverless-plugin-node-shim",
"description": "Serverless plugin to run your functions in nodejs version (8 LTS, 9+) on aws lambda",
"githubUrl": "https://github.com/jzimmek/serverless-plugin-node-shim"
},
{
"name": "serverless-local-environment",
"description": "Serverless plugin to set local environment variables and remote environment variable to different values",
"githubUrl": "https://github.com/piercus/serverless-local-environment"
},
{
"name": "serverless-cloudformation-sub-variables",
"description": "Serverless framework plugin for easily supporting AWS CloudFormation Sub function variables",
"githubUrl": "https://github.com/santiagocardenas/serverless-cloudformation-sub-variables"
},
{
"name": "serverless-sthree-env",
"description": "Serverless plugin to get config from a json formatted file in S3 and copy them to environment variable",
"githubUrl": "https://github.com/StyleTributeIT/serverless-sthree-env"
},
{
"name": "serverless-plugin-canary-deployments",
"description": "A Serverless plugin to implement canary deployments of Lambda functions",
"githubUrl": "https://github.com/davidgf/serverless-plugin-canary-deployments"
},
{
"name": "serverless-go-build",
"description": "Build go source files (or public functions) using yml definition file",
"githubUrl": "https://github.com/sean9keenan/serverless-go-build"
},
{
"name": "serverless-local-schedule",
"description": "Schedule AWS CloudWatch Event based invocations in local time(with DST support!)",
"githubUrl": "https://github.com/UnitedIncome/serverless-local-schedule"
},
{
"name": "go-serverless",
"description": "GoFormation for Serverless. Create serverless configs with Go Structs.",
"githubUrl": "https://github.com/thepauleh/goserverless"
},
{
"name": "serverless-tag-sqs",
"description": "Serverless plugin to tag SQS - Simple Queue Service",
"githubUrl": "https://github.com/gfragoso/serverless-tag-sqs"
},
{
"name": "serverless-express",
"description": "Making express app development compatible with serverless framework.",
"githubUrl": "https://github.com/mikestaub/serverless-express"
},
{
"name": "serverless-aliyun-function-compute",
"description": "Serverless Alibaba Cloud Function Compute Plugin",
"githubUrl": "https://github.com/aliyun/serverless-aliyun-function-compute"
},
{
"name": "serverless-apib-validator",
"description": "Validate that an API Blueprint has full coverage over a Serverless config",
"githubUrl": "https://github.com/onlicar/serverless-apib-validator"
},
{
"name": "serverless-package-common",
"description": "Deploy microservice Python Serverless services with common code",
"githubUrl": "https://github.com/onlicar/serverless-package-common"
},
{
"name": "serverless-tag-api-gateway",
"description": "Serverless plugin to tag API Gateway",
"githubUrl": "https://github.com/gfragoso/serverless-tag-api-gateway"
},
{
"name": "serverless-tag-cloud-watch-logs",
"description": "Serverless plugin to tag CloudWatchLogs",
"githubUrl": "https://github.com/gfragoso/serverless-tag-cloud-watch-logs"
}
]