-
Notifications
You must be signed in to change notification settings - Fork 328
/
plugins.json
1845 lines (1845 loc) · 90.2 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
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"name": "@kakkuk/serverless-aws-lambda-dynamic-trigger",
"description": "Allows to register sns, sqs and kinesis triggers (events) dynamically.",
"githubUrl": "https://github.com/failsafe-engineering/serverless-aws-lambda-dynamic-trigger",
"status": "active"
},{
"name": "@kakkuk/serverless-aws-apigateway-documentation",
"description": "Adds support for AWS API Gateway documentation and model",
"githubUrl": "https://github.com/failsafe-engineering/serverless-aws-apigateway-documentation",
"status": "active"
},{
"name": "@vulcancreative/serverless-storage",
"description": "Serverless plugin defining DynamoDB storage primitives; like localStorage but better",
"githubUrl": "https://github.com/vulcancreative/serverless-storage",
"status": "active"
},{
"name": "serverless-aws-function-url-custom-domain",
"description": "Setup cloudfront distrubution and route53 record for AWS Lambda with Function URL",
"githubUrl": "https://github.com/wangsha/serverless-aws-function-url-custom-domain",
"status": "active"
},{
"name": "serverless-plugin-typetalk",
"description": "Sends notification to Typetalk",
"githubUrl": "https://github.com/is2ei/serverless-plugin-typetalk",
"status": "active"
}, {
"name": "serverless-aws-lambda",
"description": "Plug & Play AWS Lambda NodeJS development tool with local API Gateway and Application Load Balancer support.",
"githubUrl": "https://github.com/Inqnuam/serverless-aws-lambda",
"status": "active"
},{
"name": "serverless-app-client-credentials-to-ssm",
"description": "Export Cognito app client credentials to SSM Parameter store",
"githubUrl": "https://github.com/GaaraZhu/serverless-app-client-credentials-to-ssm",
"status": "active"
}, {
"name": "serverless-prune-versions",
"description": "Automatic deletion of old Lambda and Lambda Layer versions",
"githubUrl": "https://github.com/manwaring/serverless-prune-versions",
"status": "active"
}, {
"name": "serverless-log-metric-filter",
"description": "Add Cloudwatch Log Metric Filter to Cloudwatch Logs",
"githubUrl": "https://github.com/saqemlas/serverless-log-metric-filter",
"status": "active"
},
{
"name": "serverless-plugin-sumologic",
"description": "This Serverless plugin deploys Cloudformation Stack with resources required to send Cloudformation Logs to Sumologic. This stack uses AWS Lambda to subscribe to your CloudWatch Log Group and POSTs the log data directly to Sumo HTTP Source.",
"githubUrl": "https://github.com/ACloudGuru/serverless-plugin-sumologic",
"status": "active"
}, {
"name": "serverless-plugin-apollo-graphql-federation",
"description": "A Serverless Framework that uploads a graphql schema to the Apollo Platform managed federation service",
"githubUrl": "https://github.com/Imran99/serverless-plugin-apollo-graphql-federation",
"status": "active"
}, {
"name": "serverless-plugin-modularize",
"description": "Modularize your serverless definitions",
"githubUrl": "https://github.com/icarus-sullivan/serverless-plugin-modularize",
"status": "active"
}, {
"name": "@stratiformdigital/serverless-online",
"description": "Faster lambda development in AWS through hot deploys and streaming logs.",
"githubUrl": "https://github.com/stratiformdigital/serverless-online",
"status": "active"
}, {
"name": "@stratiformdigital/serverless-iam-helper",
"description": "Applies IAM Path and PermissionsBoundary settings in hard to reach places.",
"githubUrl": "https://github.com/stratiformdigital/serverless-iam-helper",
"status": "active"
}, {
"name": "@stratiformdigital/serverless-idempotency-helper",
"description": "Helps make lambda deployments idempotent",
"githubUrl": "https://github.com/stratiformdigital/serverless-idempotency-helper",
"status": "active"
}, {
"name": "@stratiformdigital/serverless-s3-security-helper",
"description": "Sets security minded settings on s3 buckets, including sls deployment buckets",
"githubUrl": "https://github.com/stratiformdigital/serverless-s3-security-helper",
"status": "active"
}, {
"name": "serverless-provisioned-concurrency-autoscaling",
"description": "Serverless Plugin for AWS Lambda Provisioned Concurrency Auto Scaling configuration",
"githubUrl": "https://github.com/neiman-marcus/serverless-provisioned-concurrency-autoscaling",
"status": "active"
}, {
"name": "serverless-localstack",
"description": "Serverless plugin for LocalStack - a fully functional local AWS cloud stack. Develop and test your cloud & Serverless apps offline!",
"githubUrl": "https://github.com/LocalStack/serverless-localstack",
"status": "active"
}, {
"name": "serverless-commercetools-plugin",
"description": "Serverless framework plugin that registers the deployed function as a commercetools API Extension or attaches it to a Subscription.",
"githubUrl": "https://github.com/commercetools/serverless-commercetools-plugin",
"status": "active"
}, {
"name": "serverless-plugin-test-helper",
"description": "Makes it easier to end-to-end test deployed deployed services by saving CloudFormation Stack Outputs locally and exposing values via a simple Node.js library",
"githubUrl": "https://github.com/manwaring/serverless-plugin-test-helper",
"status": "active"
}, {
"name": "serverless-plugin-dart",
"description": "Deploy Dart applications to AWS Lambda",
"githubUrl": "https://github.com/katallaxie/serverless-dart",
"status": "active"
}, {
"name": "serverless-scaleway-serverless",
"description": "This plugin enables support for Scaleway Serverless Functions and Serverless Containers betas within the Serverless Framework",
"githubUrl": "https://github.com/scaleway/serverless-scaleway-functions",
"status": "active"
}, {
"name": "serverless-plugin-iam-checker",
"description": "Helps automate security controls by preventing overly broad IAM permissions via customizable rules for both actions and resource references. Ships with restrictive defaults and supports custom rule configurations via serverless.yml and environment variables",
"githubUrl": "https://github.com/manwaring/serverless-plugin-iam-checker",
"status": "active"
}, {
"name": "serverless-plugin-layer-manager",
"description": "Plugin for improved AWS Lambda layer management, including install hooks, export options and improved retain support",
"githubUrl": "https://github.com/henhal/serverless-plugin-layer-manager",
"status": "active"
}, {
"name": "serverless-plugin-lambda-edge",
"description": "Plugin for Lambda@Edge, just associating your Lambda function with existing CloudFront distribution via AWS SDK",
"githubUrl": "https://github.com/isudzumi/serverless-plugin-lambda-edge",
"status": "active"
}, {
"name": "serverless-export-outputs",
"description": "A Serverless plugin for exporting AWS stack outputs to a file",
"githubUrl": "https://github.com/honarpour/serverless-export-outputs",
"status": "active"
}, {
"name": "serverless-plugin-apigateway-sqs",
"description": "Plugin that creates an AWS APIGateway resource to connect to an AWS Simple Queue Service (SQS) without the use of a lambda.",
"githubUrl": "https://github.com/CodeRecipe-dev/serverless-apigw-sqs-plugin",
"status": "active"
}, {
"name": "serverless-mongodb-local",
"description": "Serverless MongoDB local plugin",
"githubUrl": "https://github.com/bealearts/serverless-mongodb-local",
"status": "active"
}, {
"name": "serverless-plugin-utils",
"description": "A collection of serverless framework utilities",
"githubUrl": "https://github.com/icarus-sullivan/serverless-plugin-utils",
"status": "active"
}, {
"name": "serverless-layers",
"description": "How to reduce drastically lambda size",
"githubUrl": "https://github.com/agutoli/serverless-layers",
"status": "active"
}, {
"name": "mfa-serverless-plugin",
"description": "A simple plugin for deployment accounts with MFA",
"githubUrl": "https://github.com/alikian/mfa-serverless-plugin",
"status": "active"
}, {
"name": "serverless-ini-env",
"description": "Nice Serverless plugin to setup environment variables with ini file",
"githubUrl": "https://github.com/agutoli/serverless-ini-env",
"status": "active"
}, {
"name": "serverless-websockets-plugin",
"description": "Websocket support for Serverless Framework on AWS",
"githubUrl": "https://github.com/serverless/serverless-websockets-plugin",
"status": "active"
}, {
"name": "serverless-resource-policy",
"description": "Creates a whitelist of IP or CIDR addresses using serverless resource policies",
"githubUrl": "https://github.com/HubSpotWebTeam/serverless-resource-policy",
"status": "active"
}, {
"name": "serverless-plugin-vault-v2",
"description": "Simplify integration between serverless and vault to storage environments variables",
"githubUrl": "https://github.com/eliasjcjunior/serverless-plugin-vault-v2",
"status": "active"
}, {
"name": "serverless-plugin-powertools",
"description": "Serverless plugin adding several variable tools, resolvers, and commands",
"githubUrl": "https://github.com/whardier/serverless-plugin-powertools",
"status": "active"
}, {
"name": "serverless-justauthenticateme-plugin",
"description": "Use JustAuthenticateMe to easily authenticate users before hitting your lambdas",
"githubUrl": "https://github.com/CoalesceSoftware/serverless-justauthenticateme-plugin",
"status": "active"
}, {
"name": "serverless-openapi-plugin",
"description": "Serverless plugin to generate serverless API architecture from OpenAPI definition.",
"githubUrl": "https://github.com/jaumard/serverless-openapi-plugin",
"status": "active"
}, {
"name": "serverless-dotenv-plugin",
"description": "Preload environment variables from `.env` into serverless.",
"githubUrl": "https://github.com/infrontlabs/serverless-dotenv-plugin",
"status": "active"
}, {
"name": "serverless-disable-request-validators",
"description": "Serverless v2/v3 plugin to disable API Gateway request validators.",
"githubUrl": "https://github.com/jweyrich/serverless-disable-request-validators",
"status": "active"
}, {
"name": "serverless-default-aws-resource-attributes",
"description": "Set default attributes a given CloudFormation resource should have based on type.",
"githubUrl": "https://github.com/neverendingqs/serverless-default-aws-resource-attributes",
"status": "active"
}, {
"name": "serverless-stack-policy-by-resource-type",
"description": "Serverless Framework plugin for automatically populating CloudFormation stack policy statements by resource type.",
"githubUrl": "https://github.com/neverendingqs/serverless-stack-policy-by-resource-type",
"status": "active"
}, {
"name": "serverless-print-resolved-plugin",
"description": "Generate a copy of serverless.yml with all variables resolved.",
"githubUrl": "https://github.com/neverendingqs/serverless-print-resolved-plugin",
"status": "active"
}, {
"name": "serverless-discovery-plugin",
"description": "A serverless plugin to register AWS micro-service endpoints with a discovery service at serverless deploy or serverless remove time.",
"githubUrl": "https://github.com/aregier/serverless-discovery-plugin",
"status": "active"
}, {
"name": "fullstack-serverless",
"description": "A Serverless plugin to create an AWS CloudFront distribution that serves static web content from S3 and routes API traffic to API Gateway.",
"githubUrl": "https://github.com/MadSkills-io/fullstack-serverless",
"status": "active"
}, {
"name": "serverless-finch",
"description": "A Serverless plugin to deploy static website assets to AWS S3.",
"githubUrl": "https://github.com/fernando-mc/serverless-finch",
"status": "active"
}, {
"name": "serverless-appsync-plugin",
"description": "Serverless Plugin to deploy AppSync GraphQL API",
"githubUrl": "https://github.com/sid88in/serverless-appsync-plugin",
"status": "active"
}, {
"name": "serverless-appsync-simulator",
"description": "Offline support for serverless-appsync-plugin",
"githubUrl": "https://github.com/bboure/serverless-appsync-simulator",
"status": "active"
}, {
"name": "serverless-remote-json-envs",
"description": "Allows to use plain JSON files in remote locations being parsed as environment variables in lambda",
"githubUrl": "https://github.com/juancarestre/serverless-remote-json-envs",
"status": "active"
}, {
"name": "serverless-plugin-tag-cloud-watch-logs",
"description": "Small serverless plugin providing a way to add tags to CloudWatch resources",
"githubUrl": "https://github.com/pretty-fun-therapy/serverless-plugin-tag-cloud-watch-logs",
"status": "active"
}, {
"name": "serverless-appsync-offline",
"description": "Serverless Plugin to run AWS AppSync GraphQL API localy with dynamoDB and lambda resolvers",
"githubUrl": "https://github.com/aheissenberger/serverless-appsync-offline",
"status": "active"
}, {
"name": "aws-amplify-serverless-plugin",
"description": "Generate client-side configuration files for the AWS Amplify library based on your deployed Serverless backend",
"githubUrl": "https://github.com/awslabs/aws-amplify-serverless-plugin",
"status": "active"
}, {
"name": "serverless-amplify-auth",
"description": "Update Policy for Amplify's Auth Role and Unauth Role",
"githubUrl": "https://github.com/nikaera/serverless-amplify-auth",
"status": "active"
}, {
"name": "serverless-cloudformation-parameter-setter",
"description": "Set CloudFormation parameters when deploying.",
"githubUrl": "https://github.com/trek10inc/serverless-cloudformation-parameter-setter",
"status": "active"
}, {
"name": "serverless-alexa-skills",
"description": "Manage your Alexa Skills with Serverless Framework.",
"githubUrl": "https://github.com/marcy-terui/serverless-alexa-skills",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "kumologica-serverless-plugin",
"description": "Plugin to package and deploy Kumologica flow into AWS",
"githubUrl": "https://github.com/KumologicaHQ/kumologica-serverless-plugin"
}, {
"name": "serverless-apigw-binary",
"description": "Plugin to enable binary support in AWS API Gateway.",
"githubUrl": "https://github.com/maciejtreder/serverless-apigw-binary",
"status": "active"
}, {
"name": "serverless-certificate-creator",
"description": "This serverless plugin creates certificates that you need for your custom domains in API Gateway.",
"githubUrl": "https://github.com/schwamster/serverless-certificate-creator",
"status": "active"
}, {
"name": "serverless-apigator",
"description": "This serverless plugin enables you to write AWS lambda with typescript using Microgamma",
"githubUrl": "https://github.com/microgamma/microgamma",
"status": "active"
}, {
"name": "serverless-plugin-1password",
"description": "Serverless interface to 1Password data via the 1Password CLI",
"githubUrl": "https://github.com/kandsten/serverless-plugin-1password",
"status": "active"
}, {
"name": "serverless-log-filter-subscription",
"description": "This serverless plugin creates log filter subscription for all lambda functions configured in your projects serverless.yml",
"githubUrl": "https://github.com/schwamster/serverless-log-filter-subscription",
"status": "active"
}, {
"name": "serverless-domain-manager",
"description": "Serverless plugin for managing custom domains with API Gateways.",
"githubUrl": "https://github.com/amplify-education/serverless-domain-manager",
"status": "active"
}, {
"name": "serverless-log-forwarding",
"description": "Serverless plugin for forwarding CloudWatch logs to another Lambda function.",
"githubUrl": "https://github.com/amplify-education/serverless-log-forwarding",
"status": "active"
}, {
"name": "serverless-event-body-option",
"description": "Serverless plugin that provides the extra CLI option for the invoke command to support passing the HTTP body data.",
"githubUrl": "https://github.com/jubel-han/serverless-event-body-option",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-alexa-plugin",
"description": "Serverless plugin to support Alexa Lambda events",
"githubUrl": "https://github.com/rajington/serverless-alexa-plugin",
"status": "active"
}, {
"name": "serverless-build-plugin",
"description": "A Node.js focused build plugin for serverless.",
"githubUrl": "https://github.com/nfour/serverless-build-plugin",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-openapi-integration-helper",
"description": "Provides functionality to merge stage-dependent x-amazon-apigateway integrations into openApiSpecification files ",
"githubUrl": "https://github.com/yndlingsfar/serverless-openapi-integration-helper",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-dynamodb-client",
"description": "This Serverless 0.5.x plugin help you to call AWS Dynamodb SDK without switching between different dynamodb instances, whether you work with Dynamodb local or online in AWS.",
"githubUrl": "https://github.com/99xt/serverless-dynamodb-client",
"status": "active"
}, {
"name": "serverless-dynamodb-local",
"description": "Serverless Dynamodb Local Plugin - Allows to run dynamodb locally for serverless",
"githubUrl": "https://github.com/99xt/serverless-dynamodb-local",
"status": "active"
}, {
"name": "serverless-dynamodb-fixtures",
"description": "Serverless Dynamodb Fixtures - Allows to load data on DynamoDB tables",
"githubUrl": "https://github.com/chechu/serverless-dynamodb-fixtures",
"status": "active"
}, {
"name": "serverless-dynamo-stream-plugin",
"description": "Creates and connects DynamoDB streams for pre-existing tables with AWS Lambdas using Serverless.",
"githubUrl": "https://github.com/commandeer/open/tree/development/serverless-dynamo-stream-plugin",
"status": "active"
}, {
"name": "dynamo-data-transform",
"description": "Dynamo Data Transform is an easy to use data transformation tool for DynamoDB.",
"githubUrl": "https://github.com/jitsecurity/dynamo-data-transform",
"status": "active"
}, {
"name": "serverless-offline",
"description": "Emulate AWS λ and API Gateway locally when developing your Serverless project",
"githubUrl": "https://github.com/dherault/serverless-offline",
"status": "active"
}, {
"name": "serverless-offline-local-authorizers-plugin",
"description": "Serverless plugin for adding and mocking local authorizers when developing locally with serverless-offline.",
"githubUrl": "https://github.com/nlang/serverless-offline-local-authorizers-plugin",
"status": "active"
}, {
"name": "serverless-offline-ssm",
"description": "Read SSM parameters from a .env file instead of AWS",
"githubUrl": "https://github.com/janders223/serverless-offline-ssm",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-offline-ses-v2",
"description": "Serverless plugin to run a local version of Amazon Simple Email Service (SES) supporting the V1 and V2 SendEmail and SendRawEmail APIs",
"githubUrl": "https://github.com/domdomegg/serverless-offline-ses-v2",
"status": "active"
}, {
"name": "serverless-offline-edge-lambda",
"description": "A plugin for the Serverless Framework that simulates the behavior of AWS CloudFront Edge Lambdas while developing offline",
"githubUrl": "https://github.com/evolv-ai/serverless-offline-edge-lambda",
"status": "active"
}, {
"name": "serverless-plugin-simulate",
"description": "Simulate AWS Lambda and API Gateway locally using Docker",
"githubUrl": "https://github.com/gertjvr/serverless-plugin-simulate",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-plugin-warmup",
"description": "Keep your lambdas warm during Winter.",
"githubUrl": "https://github.com/juanjoDiaz/serverless-plugin-warmup",
"status": "active"
}, {
"name": "serverless-plugin-aws-contributor-insights",
"description": "Support of AWS CloudWatch Contributor Insights",
"githubUrl": "https://github.com/kangcifong/serverless-plugin-aws-contributor-insights",
"status": "active"
}, {
"name": "serverless-plugin-browserify",
"description": "Speed up your node based lambda's",
"githubUrl": "https://github.com/doapp-ryanp/serverless-plugin-browserify",
"status": "inactive"
}, {
"name": "serverless-plugin-datadog",
"description": "Monitoring, tracing, and real-time metrics for your Lambda functions",
"githubUrl": "https://github.com/DataDog/serverless-plugin-datadog",
"status": "active"
}, {
"name": "serverless-plugin-diff",
"description": "Compares your local AWS CloudFormation templates against deployed ones.",
"githubUrl": "https://github.com/nicka/serverless-plugin-diff",
"status": "active"
}, {
"name": "serverless-run-function-plugin",
"description": "Run serverless function locally",
"githubUrl": "https://github.com/lithin/serverless-run-function-plugin",
"status": "active"
}, {
"name": "serverless-scriptable-plugin",
"description": "Customize Serverless behavior without writing a plugin.",
"githubUrl": "https://github.com/weixu365/serverless-scriptable-plugin",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-webpack",
"description": "Serverless plugin to bundle your lambdas with Webpack",
"githubUrl": "https://github.com/serverless-heaven/serverless-webpack",
"status": "active"
}, {
"name": "serverless-esbuild",
"description": "Serverless plugin to bundle JavaScript and TypeScript lambdas with esbuild - an extremely fast bundler and minifier",
"githubUrl": "https://github.com/floydspace/serverless-esbuild",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-crypt",
"description": "Securing the secrets on Serverless Framework by AWS KMS encryption.",
"githubUrl": "https://github.com/marcy-terui/serverless-crypt",
"status": "active"
}, {
"name": "serverless-plugin-multiple-responses",
"description": "Enable multiple content-types for Response template ",
"githubUrl": "https://github.com/silvermine/serverless-plugin-multiple-responses",
"status": "active"
}, {
"name": "serverless-plugin-dot-template",
"description": "Generates output files based on Serverless variables and doT templates",
"githubUrl": "https://github.com/kandsten/serverless-plugin-dot-template",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-modular",
"description": "Helps you deploy and manage multiple features with single root serverless file",
"githubUrl": "https://github.com/aa2kb/serverless-modular",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "raml-serverless",
"description": "Serverless plugin to work with RAML API spec documents",
"githubUrl": "https://github.com/andrewcurioso/raml-serverless",
"status": "active"
}, {
"name": "serverless-python-requirements",
"description": "Serverless plugin to bundle Python packages",
"githubUrl": "https://github.com/UnitedIncome/serverless-python-requirements",
"status": "active"
}, {
"name": "serverless-pydeps",
"description": "Serverless plugin to quickly automate Python dependencies",
"githubUrl": "https://github.com/CloudSnorkel/serverless-pydeps",
"status": "active"
}, {
"name": "serverless-ruby-layer",
"description": "A Serverless Plugin to auto deploy gems to AWS Layer using Gemfile",
"githubUrl": "https://github.com/navarasu/serverless-ruby-layer",
"status": "active"
}, {
"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",
"status": "active"
},{
"name": "serverless-dotnet",
"description": "A serverless plugin to run 'dotnet' commands as part of the deploy process",
"githubUrl": "https://github.com/fruffin/serverless-dotnet",
"status": "active"
}, {
"name": "serverless-enable-api-logs",
"description": "Enables Coudwatch logging for API Gateway events",
"githubUrl": "https://github.com/paulSambolin/serverless-enable-api-logs",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-plugin-subscription-filter",
"description": "A serverless plugin to register AWS CloudWatchLogs subscription filter",
"githubUrl": "https://github.com/tsub/serverless-plugin-subscription-filter",
"status": "active"
}, {
"name": "serverless-step-functions",
"description": "AWS Step Functions plugin for Serverless Framework",
"githubUrl": "https://github.com/serverless-operations/serverless-step-functions",
"status": "active"
}, {
"name": "serverless-lambda-layer-packager",
"description": "A Serverless plugin that allows you to maintain your normal project structure when developing Lambda Layers.",
"githubUrl": "https://github.com/bramhoven/serverless-lambda-layer-packager",
"status": "active"
}, {
"name": "serverless-apigateway-service-proxy",
"description": "This Serverless Framewrok plugin supports the AWS service proxy integration feature of API Gateway.",
"githubUrl": "https://github.com/horike37/serverless-apigateway-service-proxy",
"status": "active"
}, {
"name": "serverless-package-customizer",
"description": "This allows you to customize packaging system of the Serverless Framework from a command line.",
"githubUrl": "https://github.com/horike37/serverless-package-customizer",
"status": "active"
}, {
"name": "serverless-package-location-customizer",
"description": "A serverless plugin to allow custom S3Bucket and S3Key path when packaging Lambda Functions and Layers.",
"githubUrl": "https://github.com/cipri-p/serverless-package-location-customizer",
"status": "active"
}, {
"name": "serverless-plugin-scripts",
"description": "Add scripting capabilities to the Serverless Framework",
"githubUrl": "https://github.com/mvila/serverless-plugin-scripts",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-coffeescript",
"description": "A Serverless plugin to compile your CoffeeScript into JavaScript at deployment",
"githubUrl": "https://github.com/duanefields/serverless-coffeescript",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-cljs-plugin",
"description": "Enables Clojurescript as an implementation language for Lambda handlers",
"githubUrl": "https://github.com/nervous-systems/serverless-cljs-plugin",
"status": "active"
}, {
"name": "serverless-apigateway-log-retention",
"description": "Control the retention of your AWS ApiGateway access logs and execution logs.",
"githubUrl": "https://github.com/dvla/serverless-apigateway-log-retention",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "@unly/serverless-env-copy-plugin",
"description": "Fetch environment variables and write it to a .env file - Maintained fork from https://github.com/Jimdo/serverless-dotenv",
"githubUrl": "https://github.com/UnlyEd/serverless-env-copy-plugin",
"status": "active"
}, {
"name": "@unly/serverless-plugin-dynamodb-backups",
"description": "Configure automated DynamoDB \"On-Demand\" backups and manage backups lifecycle, powered by AWS Lambda",
"githubUrl": "https://github.com/UnlyEd/serverless-plugin-dynamodb-backups",
"status": "active"
}, {
"name": "serverless-convention",
"description": "Dynamically import resources by defining a convention, split up your yml",
"githubUrl": "https://github.com/LeoPlatform/serverless-convention",
"status": "active"
}, {
"name": "serverless-openapi-documenter",
"description": "A plugin that creates a valid OpenAPI 3.0.X json or yaml schema as well as being able to output a Postman Collection v2 in json.",
"githubUrl": "https://github.com/JaredCE/serverless-openapi-documenter",
"status": "active"
}, {
"name": "serverless-offline-scheduler",
"description": "Runs scheduled functions offline while integrating with serverless-offline",
"githubUrl": "https://github.com/ajmath/serverless-offline-scheduler",
"status": "active"
}, {
"name": "serverless-aws-alias",
"description": "This plugin enables use of AWS aliases on Lambda functions.",
"githubUrl": "https://github.com/serverless-heaven/serverless-aws-alias",
"status": "active"
}, {
"name": "serverless-plugin-webpack",
"description": "A serverless plugin to automatically bundle your functions individually with webpack",
"githubUrl": "https://github.com/goldwasserexchange/serverless-plugin-webpack",
"status": "active"
}, {
"name": "serverless-secret-baker",
"description": "A Serverless Framework Plugin for secure, performant, and deterministic secret management.",
"githubUrl": "https://github.com/vacasaoss/serverless-secret-baker",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-sqs-alarms-plugin",
"description": "Wrapper to setup CloudWatch Alarms on SQS queue length",
"githubUrl": "https://github.com/sbstjn/serverless-sqs-alarms-plugin",
"status": "inactive"
}, {
"name": "serverless-dotenv",
"description": "Fetch environment variables and write it to a .env file",
"githubUrl": "https://github.com/Jimdo/serverless-dotenv",
"status": "active"
}, {
"name": "serverless-haskell",
"description": "Deploying Haskell applications to AWS Lambda with Serverless",
"githubUrl": "https://github.com/seek-oss/serverless-haskell",
"status": "active"
}, {
"name": "serverless-hooks-plugin",
"description": "Run arbitrary commands on any lifecycle event in serverless",
"githubUrl": "https://github.com/uswitch/serverless-hooks-plugin",
"status": "active"
}, {
"name": "serverless-offline-watcher",
"description": "Run arbitrary commands when files are changed while running serverless-offline",
"githubUrl": "https://github.com/domdomegg/serverless-offline-watcher",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-plugin-typescript",
"description": "Serverless plugin for zero-config Typescript support.",
"githubUrl": "https://github.com/graphcool/serverless-plugin-typescript",
"status": "active"
}, {
"name": "serverless-parameters",
"description": "Add parameters to the generated cloudformation templates",
"githubUrl": "https://github.com/svdgraaf/serverless-parameters",
"status": "active"
}, {
"name": "serverless-git-commit-tracker",
"description": "Generates a version tracking file for web or API deployment containing the latest git commit version number, deployment stage, and date",
"githubUrl": "https://github.com/optimator999/serverless-git-commit-tracker",
"status": "active"
},{
"name": "serverless-plugin-epsagon",
"description": "Distributed tracing that helps you monitor and troubleshoot your serverless applications.",
"githubUrl": "https://github.com/epsagon/serverless-plugin-epsagon",
"status": "active"
}, {
"name": "serverless-dynamodb-ttl",
"description": "Configure DynamoDB TTL in serverless.yml (until CloudFormation supports this).",
"githubUrl": "https://github.com/Jimdo/serverless-dynamodb-ttl",
"status": "active"
}, {
"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",
"status": "active"
},{
"name": "serverless-plugin-lambda-insights",
"description": "A Serverless Framework Plugin allowing to enable Lambda Insights.",
"githubUrl": "https://github.com/awslabs/serverless-plugin-lambda-insights",
"status": "active"
},
{
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-plugin-iopipe",
"description": "See inside your Lambda functions with high fidelity metrics and monitoring.",
"githubUrl": "https://github.com/iopipe/serverless-plugin-iopipe",
"status": "active"
}, {
"name": "serverless-plugin-metric",
"description": "Creates dynamically AWS metric-filter resources with custom patterns",
"githubUrl": "https://github.com/alex20465/serverless-plugin-metric",
"status": "active"
}, {
"name": "serverless-sam",
"description": "Exports an AWS SAM template for a service created with the Serverless Framework.",
"githubUrl": "https://github.com/SAPessi/serverless-sam",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-kubeless",
"description": "Serverless plugin for deploying functions to Kubeless.",
"githubUrl": "https://github.com/serverless/serverless-kubeless",
"status": "active"
}, {
"name": "serverless-kubeless-offline",
"description": "Simulates Kubeless NodeJS runtimes to run/call your functions offline using the Serverless Framework.",
"githubUrl": "https://github.com/usefulio/serverless-kubeless-offline",
"status": "active"
}, {
"name": "serverless-apigwy-binary",
"description": "Serverless plugin for configuring API Gateway to return binary responses",
"githubUrl": "https://github.com/ryanmurakami/serverless-apigwy-binary",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "@digitalmaas/serverless-plugin-sqs-alarms",
"description": "Simplifies the setup of CloudWatch Alarms to monitor the visible messages in an SQS queue.",
"githubUrl": "https://github.com/digitalmaas/serverless-plugin-sqs-alarms",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-google-cloudfunctions",
"description": "This plugin enables support for Google Cloud Functions within the Serverless Framework.",
"githubUrl": "https://github.com/serverless/serverless-google-cloudfunctions",
"status": "active"
}, {
"name": "serverless-azure-functions",
"description": "A Serverless plugin that adds Azure Functions support to the Serverless Framework.",
"githubUrl": "https://github.com/serverless/serverless-azure-functions",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "@redtea/serverless-env-generator",
"description": "Manage environment variables with YAML and load them with dotenv. Supports variable encryption with KMS, multiple stages and custom profiles. Maintained fork from https://github.com/DieProduktMacher/serverless-env-generator with more advanced YAML anchors supporting and other.",
"githubUrl": "https://github.com/org-redtea/serverless-env-generator",
"status": "active"
}, {
"name": "@agiledigital/serverless-sns-sqs-lambda",
"description": "Provide the lambda function with the snsSqs event, the plugin will add the AWS SNS topic and subscription, SQS queue and dead letter queue, and the role need for the lambda.",
"githubUrl": "https://github.com/agiledigital/serverless-sns-sqs-lambda",
"status": "active"
}, {
"name": "serverless-plugin-embedded-env-in-code",
"description": "Replace environment variables with static strings before deployment. It’s for Lambda@Edge.",
"githubUrl": "https://github.com/zaru/serverless-plugin-embedded-env-in-code",
"status": "active"
}, {
"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",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-plugin-elastic-beanstalk",
"description": "A serverless plugin to deploy applications to AWS ElasticBeanstalk.",
"githubUrl": "https://github.com/rawphp/serverless-plugin-elastic-beanstalk",
"status": "active"
}, {
"name": "serverless-s3-local",
"description": "A serverless plugin to run a S3 clone on your local machine",
"githubUrl": "https://github.com/ar90n/serverless-s3-local",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-dynamodb-autoscaling",
"description": "Configure Amazon DynamoDB's native Auto Scaling for your table capacities.",
"githubUrl": "https://github.com/sbstjn/serverless-dynamodb-autoscaling",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-s3bucket-sync",
"description": "Sync a local folder with a S3 bucket after sls deploy",
"githubUrl": "https://github.com/sbstjn/serverless-s3bucket-sync",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-build-client",
"description": "Build your static website with environment variables defined in serverless.yml",
"githubUrl": "https://github.com/tgfischer/serverless-build-client",
"status": "active"
}, {
"name": "serverless-nested-stack",
"description": "A plugin to Workaround for Cloudformation 200 resource limit",
"githubUrl": "https://github.com/jagdish-176/serverless-nested-stack",
"status": "active"
}, {
"name": "serverless-plugin-common-excludes",
"description": "Adds commonly excluded files to package.excludes",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-common-excludes",
"status": "active"
}, {
"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",
"status": "active"
}, {
"name": "serverless-plugin-split-stacks",
"description": "Migrate certain resources to nested stacks",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-split-stacks",
"status": "active"
}, {
"name": "serverless-plugin-log-subscription",
"description": "Adds a CloudWatch LogSubscription for functions",
"githubUrl": "https://github.com/dougmoscrop/serverless-plugin-log-subscription",
"status": "active"
}, {
"name": "serverless-cf-vars",
"description": "Enables use of AWS pseudo functions and Fn::Sub string substitution",
"githubUrl": "https://gitlab.com/kabo/serverless-cf-vars",