-
Notifications
You must be signed in to change notification settings - Fork 4.5k
/
Copy pathexamples.json
2829 lines (2829 loc) · 122 KB
/
examples.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
[
{
"title": "Dot Net REST API with DynamoDB",
"name": "aws-dotnet-rest-api-with-dynamodb",
"description": "Setup a REST API w/ DynamoDB using Dot Net Core 2.1",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-dotnet-rest-api-with-dynamodb",
"framework": "v1",
"language": "csharp",
"platform": "aws",
"authorLink": "https://github.com/samueleresca",
"authorName": "Samuele Resca",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8921095?v=4&s=140"
},
{
"title": "AWS FFmepg Layer",
"name": "aws-ffmpeg-layer",
"description": "AWS FFmepg Layer & a service using it to create GIFs",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-ffmpeg-layer",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/tdhopper",
"authorName": "Timothy Hopper",
"authorAvatar": "https://avatars0.githubusercontent.com/u/611122?v=4&s=140"
},
{
"title": "AWS Golang Auth",
"name": "aws-golang-auth-examples",
"description": "This example shows you how to setup auth in front of a AWS Lambda function",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-golang-auth-examples",
"framework": "v1",
"language": "go",
"platform": "aws",
"authorLink": "https://github.com/srbry",
"authorName": "srbry",
"authorAvatar": "https://avatars0.githubusercontent.com/u/16936753?v=4&s=140"
},
{
"title": "DynamoDB Stream To Elasticsearch",
"name": "aws-golang-dynamo-stream-to-elasticsearch",
"description": "Stream data from DynamoDB to Elasticsearch",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-golang-dynamo-stream-to-elasticsearch",
"framework": "v1",
"language": "go",
"platform": "aws",
"authorLink": "https://github.com/jalie",
"authorName": "Jan Liesendahl",
"authorAvatar": "https://avatars0.githubusercontent.com/u/548657?v=4&s=140"
},
{
"title": "Google map api",
"name": "aws-golang-googlemap",
"description": "Serverless example using golang to hit google map api",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-golang-googlemap",
"framework": "v1",
"language": "go",
"platform": "aws",
"authorLink": "https://github.com/pramonow",
"authorName": "Pramono Winata",
"authorAvatar": "https://avatars0.githubusercontent.com/u/28787057?v=4&s=140"
},
{
"title": "HTTP GET and POST",
"name": "aws-golang-http-get-post",
"description": "Boilerplate code for Golang with GET and POST example",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-golang-http-get-post",
"framework": "v1",
"language": "go",
"platform": "aws",
"authorLink": "https://github.com/pramonow",
"authorName": "Pramono Winata",
"authorAvatar": "https://avatars0.githubusercontent.com/u/28787057?v=4&s=140"
},
{
"title": "Aws golang rest api with dynamodb",
"name": "aws-golang-rest-api-with-dynamodb",
"description": "Boilerplate code for Golang CRUD Operations",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-golang-rest-api-with-dynamodb",
"framework": "v1",
"language": "go",
"platform": "aws",
"authorLink": "https://github.com/gsweene2",
"authorName": "Garrett Sweeney",
"authorAvatar": "https://avatars.githubusercontent.com/u/14845943?s=400&u=6d79e8f042cd3d30643ba4598515cae24be69ec3&v=4"
},
{
"title": "AWS S3 Bucket Replicator in Golang",
"name": "aws-golang-s3-file-replicator",
"description": "Boilerplate code for Golang with S3 object create event and replicator example",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-golang-s3-file-replicator",
"framework": "v1",
"language": "go",
"platform": "aws",
"authorLink": "https://github.com/p0n2",
"authorName": "p0n2",
"authorAvatar": "https://avatars3.githubusercontent.com/u/59630164"
},
{
"title": "TODO",
"name": "aws-golang-simple-http-endpoint",
"description": "This example demonstrates how to setup a simple HTTP endpoint in Go.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-golang-simple-http-endpoint",
"framework": "v1",
"language": "go",
"platform": "aws",
"authorLink": "https://github.com/sebito91",
"authorName": "Sebastian Borza",
"authorAvatar": "https://avatars0.githubusercontent.com/u/3159454?v=4&s=140"
},
{
"title": "TODO",
"name": "aws-golang-stream-kinesis-to-elasticsearch",
"description": "This example demonstrates how to stream kinesis information into elasticsearch in a golang runtime",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-golang-stream-kinesis-to-elasticsearch",
"framework": "v1",
"language": "go",
"platform": "aws",
"authorLink": "https://github.com/sebito91",
"authorName": "Sebastian Borza",
"authorAvatar": "https://avatars0.githubusercontent.com/u/3159454?v=4&s=140"
},
{
"title": "AWS Simple HTTP Endpoint example in Java",
"name": "aws-java-simple-http-endpoint",
"description": "This example demonstrates how to setup a simple HTTP GET endpoint using Java. Once you ping it, it will reply with the current time.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-java-simple-http-endpoint",
"framework": "v1",
"language": "java",
"platform": "aws",
"authorLink": "https://github.com/DoWhileGeek",
"authorName": "Joeseph Rodrigues",
"authorAvatar": "https://avatars3.githubusercontent.com/u/1767769?v=4&s=140"
},
{
"title": "TODO",
"name": "aws-multiple-runtime",
"description": "This example demonstrates how you can run multiple runtimes in AWS Lambda.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-multiple-runtime",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/christophgysin",
"authorName": "Christoph Gysin",
"authorAvatar": "https://avatars0.githubusercontent.com/u/527924?v=4&s=140"
},
{
"title": "AWS Serverless Alexa Skill example in NodeJS",
"name": "aws-node-alexa-skill",
"description": "This example demonstrates how to setup your own Alexa skill using AWS Lambdas.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-alexa-skill",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "API Gateway Authorizer Function for Auth0 or AWS Cognito using RS256 JSON Web Key Sets tokens.",
"name": "aws-node-auth0-cognito-custom-authorizers-api",
"description": "Authorize your API Gateway with either Auth0 or Cognito JWKS RS256 tokens.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-auth0-cognito-custom-authorizers-api",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/shahzeb1",
"authorName": "Shahzeb K.",
"authorAvatar": "https://avatars2.githubusercontent.com/u/1383831?v=4&s=140"
},
{
"title": "AWS API Gateway Custom Authorizer Function with Auth0 example in NodeJS",
"name": "aws-node-auth0-custom-authorizers-api",
"description": "This is an example of how to protect API endpoints with Auth0, JSON Web Tokens (jwt) and a custom authorizer lambda function.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-auth0-custom-authorizers-api",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/erezrokah",
"authorName": "Erez Rokah",
"authorAvatar": "https://avatars0.githubusercontent.com/u/26760571?v=4&s=140"
},
{
"title": "Dynamic Image Resizing API",
"name": "aws-node-dynamic-image-resizer",
"description": "This example shows you how to setup a dynamic image resizer API",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-dynamic-image-resizer",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/sebito91",
"authorName": "Sebastian Borza",
"authorAvatar": "https://avatars0.githubusercontent.com/u/3159454?v=4&s=140"
},
{
"title": "TODO",
"name": "aws-node-dynamodb-backup",
"description": "This examples shows your how to create a backup of your DynamoDB table to S3.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-dynamodb-backup",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/kaihendry",
"authorName": "Kai Hendry",
"authorAvatar": "https://avatars3.githubusercontent.com/u/765871?v=4&s=140"
},
{
"title": "AWS Storing Encrypted Secrets example in NodeJS",
"name": "aws-node-env-variables-encrypted-in-a-file",
"description": "This example demonstrates how to store secrets like API keys encrypted in your repository while providing them as environment variables to your AWS Lambda functions.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-env-variables-encrypted-in-a-file",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "AWS Serverless Environment Variables Usage example in NodeJS",
"name": "aws-node-env-variables",
"description": "This example demonstrates how to use environment variables for AWS Lambdas.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-env-variables",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "Node Express API on AWS",
"name": "aws-node-express-api",
"description": "This template demonstrates how to develop and deploy a simple Node Express API running on AWS Lambda using the Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-express-api",
"framework": "v4",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4",
"priority": 2
},
{
"title": "Node Express API service backed by DynamoDB on AWS",
"name": "aws-node-express-dynamodb-api",
"description": "This template demonstrates how to develop and deploy a simple Node Express API service backed by DynamoDB running on AWS Lambda using the Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-express-dynamodb-api",
"framework": "v4",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4",
"priority": 3
},
{
"title": "AWS Fetch image from URL and upload to S3 example in NodeJS",
"name": "aws-node-fetch-file-and-store-in-s3",
"description": "This example display how to fetch an image from remote source (URL) and then upload this image to a S3 bucket.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-fetch-file-and-store-in-s3",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/ScottBrenner",
"authorName": "Scott Brenner",
"authorAvatar": "https://avatars2.githubusercontent.com/u/416477?v=4&s=140"
},
{
"title": "Serverless Email Sign Up Form",
"name": "aws-node-fullstack",
"description": "This example demonstrates how to deploy a Fullstack serverless application",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-fullstack",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/trilom",
"authorName": "Bryan Killian",
"authorAvatar": "https://avatars0.githubusercontent.com/u/7476973?v=4&s=140"
},
{
"title": "AWS Function compiled with Babel example in NodeJS",
"name": "aws-node-function-compiled-with-babel",
"description": "This example demonstrates how to compile your JavaScript code with Babel. In order to do so the 'serverless-babel-plugin' is leveraged.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-function-compiled-with-babel",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "Serverless Github Check",
"name": "aws-node-github-check",
"description": "The idea is to validate that all Pull Requests are related to a specific trello card.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-github-check",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/Fortiz2305",
"authorName": "Francisco Ortiz",
"authorAvatar": "https://avatars0.githubusercontent.com/u/4025821?v=4&s=140"
},
{
"title": "AWS Serverless Github Webhook Listener example in NodeJS",
"name": "aws-node-github-webhook-listener",
"description": "This service will listen to github webhooks fired by a given repository.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-github-webhook-listener",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/adambrgmn",
"authorName": "Adam Bergman",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13746650?v=4&s=140"
},
{
"title": "A Simple Serverless GraphQL API for MySQL, Postgres and Aurora",
"name": "aws-node-graphql-and-rds",
"description": "This is an example project that uses 3 RDS databases to illustrate the differences between using each of them",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-graphql-and-rds",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/chief-wizard",
"authorName": "Chief Wizard",
"authorAvatar": "https://avatars3.githubusercontent.com/u/40777040?v=4&s=140"
},
{
"title": "GraphQL query endpoint in NodeJS on AWS with DynamoDB",
"name": "aws-node-graphql-api-with-dynamodb",
"description": "A single-module GraphQL endpoint with query and mutation functionality.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-graphql-api-with-dynamodb",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/gismoranas",
"authorName": "Gismo Ranas",
"authorAvatar": "https://avatars0.githubusercontent.com/u/5903107?v=4&s=140"
},
{
"title": "Node.js AWS Lambda connecting to Heroku Postgres",
"name": "aws-node-heroku-postgres",
"description": "Shows how to connect AWS Lambda to Heroku Postgres. Uses an api:release Heroku webhook and the Heroku API to handle automatic Heroku Postgres credential rotation.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-heroku-postgres",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/welkie",
"authorName": "Matt Welke",
"authorAvatar": "https://avatars0.githubusercontent.com/u/7719209"
},
{
"title": "AWS Serverless IoT Event example in NodeJS",
"name": "aws-node-iot-event",
"description": "This example demonstrates how to setup a AWS IoT Rule to send events to a Lambda function.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-iot-event",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "Node.js AWS Lambda connecting to MongoDB Atlas",
"name": "aws-node-mongodb-atlas",
"description": "Shows how to connect AWS Lambda to MongoDB Atlas.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-mongodb-atlas",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/welkie",
"authorName": "Matt Welke",
"authorAvatar": "https://avatars0.githubusercontent.com/u/7719209"
},
{
"title": "TODO",
"name": "aws-node-oauth-dropbox-api",
"description": "Connect to Dropbox's API using AWS Lambda.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-oauth-dropbox-api",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Jay Deshmukh",
"authorAvatar": "https://avatars0.githubusercontent.com/u/38460988?v=4&s=140"
},
{
"title": "Running Puppeteer on AWS Lambda",
"name": "aws-node-puppeteer",
"description": "This example shows you how to run Puppeteer on AWS Lambda",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-puppeteer",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/emaildano",
"authorName": "Daniel Olson",
"authorAvatar": "https://avatars3.githubusercontent.com/u/1872327?v=4&s=140"
},
{
"title": "AWS Recursive Lambda function Invocation example in NodeJS",
"name": "aws-node-recursive-function",
"description": "This is an example of a function that will recursively call itself.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-recursive-function",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "AWS Analyse Image from S3 with Amazon Rekognition example in NodeJS",
"name": "aws-node-rekognition-analysis-s3-image",
"description": "This example shows how to analyze an image in an S3 bucket with Amazon Rekognition and return a list of labels.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-rekognition-analysis-s3-image",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/ScottBrenner",
"authorName": "Scott Brenner",
"authorAvatar": "https://avatars2.githubusercontent.com/u/416477?v=4&s=140"
},
{
"title": "TODO",
"name": "aws-node-rest-api-mongodb",
"description": "This example demonstrate how to use MongoDB with AWS and Serverless.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-rest-api-mongodb",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/lucianopf",
"authorName": "Luciano Pellacani Franca",
"authorAvatar": "https://avatars2.githubusercontent.com/u/8251208?v=4&s=140"
},
{
"title": "AWS Simple HTTP Endpoint example in NodeJS with Typescript",
"name": "aws-node-rest-api-typescript-simple",
"description": "This template demonstrates how to make a simple REST API with Node.js and Typescript running on AWS Lambda and API Gateway using the Serverless Framework v1.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-rest-api-typescript-simple",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4"
},
{
"title": "Serverless Nodejs Rest API with TypeScript And MongoDB Atlas",
"name": "aws-node-rest-api-typescript",
"description": "This is simple REST API example for AWS Lambda By Serverless framwork with TypeScript and MongoDB Atlas.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-rest-api-typescript",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/Q-Angelo",
"authorName": "May Jun",
"authorAvatar": "https://avatars0.githubusercontent.com/u/17956058?s=460&u=f3acebabd097e6e93d5be5a8366b980fea5b15aa&v=4"
},
{
"title": "AWS Serverless REST API with DynamoDB and offline support example in NodeJS",
"name": "aws-node-rest-api-with-dynamodb-and-offline",
"description": "This example demonstrates how to run a service locally, using the 'serverless-offline' plugin. It provides a REST API to manage Todos stored in DynamoDB.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-rest-api-with-dynamodb-and-offline",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/adambrgmn",
"authorName": "Adam Bergman",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13746650?v=4&s=140"
},
{
"title": "AWS Serverless REST API example in NodeJS",
"name": "aws-node-rest-api-with-dynamodb",
"description": "This example demonstrates how to setup a RESTful Web Service allowing you to create, list, get, update and delete Todos. DynamoDB is used to store the data.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-rest-api-with-dynamodb",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/ozbillwang",
"authorName": "Bill Wang",
"authorAvatar": "https://avatars3.githubusercontent.com/u/8954908?v=4&s=140"
},
{
"title": "AWS Simple HTTP Endpoint example in NodeJS",
"name": "aws-node-rest-api",
"description": "This template demonstrates how to make a simple REST API with Node.js running on AWS Lambda and API Gateway using the traditional Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-rest-api",
"framework": "v2",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4"
},
{
"title": "AWS Simple HTTP Endpoint example in NodeJS",
"name": "aws-node-http-api",
"description": "This template demonstrates how to make a simple HTTP API with Node.js running on AWS Lambda and API Gateway using the Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-http-api",
"framework": "v4",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4",
"priority": 1
},
{
"title": "AWS S3 File Replicator",
"name": "aws-node-s3-file-replicator",
"description": "This example creates 2 AWS S3 buckets and copies files in one bucket to the other",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-s3-file-replicator",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/ac360",
"authorName": "Austen Collins",
"authorAvatar": "https://avatars3.githubusercontent.com/u/2752551?v=4&s=140"
},
{
"title": "AWS Node Scheduled Cron example in NodeJS",
"name": "aws-node-scheduled-cron",
"description": "This is an example of creating a function that runs as a cron job using the serverless ''schedule'' event.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-scheduled-cron",
"framework": "v4",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/0dj0bz",
"authorName": "Rob Abbott",
"authorAvatar": "https://avatars3.githubusercontent.com/u/5679763?v=4&s=140",
"priority": 4
},
{
"title": "AWS Node Scheduled Weather example in NodeJS",
"name": "aws-node-scheduled-weather",
"description": "This is an example of creating a function that runs as a cron job using the serverless 'schedule' event. It retrieves weather information at 10am (UTC) and emails it to a predefined recipient.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-scheduled-weather",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "AWS Serving Dynamic HTML via API Gateway example in NodeJS",
"name": "aws-node-serve-dynamic-html-via-http-endpoint",
"description": "This example illustrates how to hookup an API Gateway endpoint to a Lambda function to render HTML on a GET request.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-serve-dynamic-html-via-http-endpoint",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/slate71",
"authorName": "Lukas Andersen",
"authorAvatar": "https://avatars0.githubusercontent.com/u/2078561?v=4&s=140"
},
{
"title": "The Serverless Gong",
"name": "aws-node-serverless-gong",
"description": "A serverless gong with GitHub and Slack webhooks",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-serverless-gong",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/bildungsroman",
"authorName": "Anna Spysz",
"authorAvatar": "https://avatars3.githubusercontent.com/u/5382821?v=4&s=140"
},
{
"title": "AWS SES receive emails and process body",
"name": "aws-node-ses-receive-email-body",
"description": "This example shows how to process receiving emails, and have S3 trigger a lambda function.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-ses-receive-email-body",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/aheissenberger",
"authorName": "Andreas Heissenberger",
"authorAvatar": "https://avatars2.githubusercontent.com/u/200095?v=4&s=140"
},
{
"title": "AWS SES receive an email, trigger a lambda function to process header.",
"name": "aws-node-ses-receive-email-header",
"description": "This example shows how to process receiving email header, and trigger a lambda function.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-ses-receive-email-header",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/aheissenberger",
"authorName": "Andreas Heissenberger",
"authorAvatar": "https://avatars0.githubusercontent.com/u/200095?v=4&s=140"
},
{
"title": "Shared AWS API Gateway with multiple Node Lambdas",
"name": "aws-node-shared-gateway",
"description": "A sample of implementing shared API gateway with multiple Node Lambdas",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-shared-gateway",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/allanchua101",
"authorName": "Allan Chua",
"authorAvatar": "https://avatars3.githubusercontent.com/u/26626798?s=460&v=4"
},
{
"title": "AWS Node Signed Uploads",
"name": "aws-node-signed-uploads",
"description": "The approach implemented in this service is useful when you want to use Amazon API Gateway and you want to solve the 10MB payload limit",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-signed-uploads",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/kalinchernev",
"authorName": "Kalin Chernev",
"authorAvatar": "https://avatars3.githubusercontent.com/u/1923476?v=4&s=140"
},
{
"title": "AWS Simple HTTP Endpoint example in NodeJS",
"name": "aws-node-simple-http-endpoint",
"description": "This example demonstrates how to setup a simple HTTP GET endpoint. Once you ping it, it will reply with the current time.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-simple-http-endpoint",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "Simple AWS Transcribe example in NodeJS",
"name": "aws-node-simple-transcribe-s3",
"description": "This example demonstrates how to setup a lambda function to transcribe your audio file (.wav format) into a text transcription. The lambda will be triggered whenever a new audio file is uploaded to S3 and the transcription (JSON format) will be saved to a S3 bucket.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-simple-transcribe-s3",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/t49tran",
"authorName": "Duong Tran",
"authorAvatar": "https://avatars0.githubusercontent.com/u/2223362?v=4&s=140"
},
{
"title": "AWS Single Page Application example in NodeJS",
"name": "aws-node-single-page-app-via-cloudfront",
"description": "This example demonstrates how to setup a Single Page Application.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-single-page-app-via-cloudfront",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/erezrokah",
"authorName": "Erez Rokah",
"authorAvatar": "https://avatars0.githubusercontent.com/u/26760571?v=4&s=140"
},
{
"title": "Node SQS Producer Consumer on AWS",
"name": "aws-node-sqs-worker",
"description": "This template demonstrates how to develop and deploy a simple SQS-based producer-consumer service running on AWS Lambda using the traditional Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-sqs-worker",
"framework": "v2",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4"
},
{
"title": "AWS Stripe Integration example in NodeJS",
"name": "aws-node-stripe-integration",
"description": "This example for Stripe integration using AWS Lambda and API Gateway.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-stripe-integration",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/adambrgmn",
"authorName": "Adam Bergman",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13746650?v=4&s=140"
},
{
"title": "Simple Telegram bot",
"name": "aws-node-telegram-echo-bot",
"description": "This is a simple echo bot on Telegram.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-telegram-echo-bot",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/hrchu",
"authorName": "Peter Chu",
"authorAvatar": "https://avatars2.githubusercontent.com/u/3183314?s=460&v=4"
},
{
"title": "AWS Data Processing example in NodeJS",
"name": "aws-node-text-analysis-via-sns-post-processing",
"description": "This example demonstrates how to setup a simple data processing pipeline.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-text-analysis-via-sns-post-processing",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/adambrgmn",
"authorName": "Adam Bergman",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13746650?v=4&s=140"
},
{
"title": "AWS Send SMS Message with Twilio example in NodeJS",
"name": "aws-node-twilio-send-text-message",
"description": "This example demonstrates how to send SMS messages with the Twilio SDK and AWS lambda.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-twilio-send-text-message",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/darrenhgc",
"authorName": "Darren Holland",
"authorAvatar": "https://avatars0.githubusercontent.com/u/28113106?v=4&s=140"
},
{
"title": "Joke Twitter Bot",
"name": "aws-node-twitter-joke-bot",
"description": "Twitter bot that will periodically tweet out a joke obtained from a joke API.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-twitter-joke-bot",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/Fixy250185",
"authorName": "Craig Sweaton",
"authorAvatar": "https://avatars0.githubusercontent.com/u/26969518?v=4&s=140"
},
{
"title": "AWS Apollo Lambda (NodeJS & Typescript)",
"name": "aws-node-typescript-apollo-lambda",
"description": "This example provides a setup for a Lambda Graphql API with apollo",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-typescript-apollo-lambda",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/jmpfrazao",
"authorName": "Miguel Frazao",
"authorAvatar": "https://avatars3.githubusercontent.com/u/28927258?s=460&v=4"
},
{
"title": "AWS Kinesis Data Streams Example (NodeJS & Typescript)",
"name": "aws-node-typescript-kinesis",
"description": "Produce and Consume data on a Kinesis Data Stream with Typescript.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-typescript-kinesis",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/billkidwell",
"authorName": "Bill Kidwell",
"authorAvatar": "https://avatars0.githubusercontent.com/u/46457910?s=460&u=7c6d271ea7527f05e6c053cab571d32ffb3dbd38&v=4"
},
{
"title": "AWS Nest application example (NodeJS & Typescript)",
"name": "aws-node-typescript-nest",
"description": "This example demonstrates how to setup a simple [Nest](https://github.com/nestjs/nest) application.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-typescript-nest",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/neilime",
"authorName": "Emilien Escalle",
"authorAvatar": "https://avatars3.githubusercontent.com/u/314088?s=140&v=4"
},
{
"title": "TODO",
"name": "aws-node-typescript-rest-api-with-dynamodb",
"description": "This example shows your how to create a TypeScript powered REST API with DynamoDB.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-typescript-rest-api-with-dynamodb",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/QuantumInformation",
"authorName": "Nikos",
"authorAvatar": "https://avatars0.githubusercontent.com/u/216566?v=4&s=140"
},
{
"title": "AWS SQS Standard Example (NodeJS & Typescript)",
"name": "aws-node-typescript-sqs-standard",
"description": "This example demonstrates how to setup a SQS with Typescript.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-typescript-sqs-standard",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/jmpfrazao",
"authorName": "Miguel Frazao",
"authorAvatar": "https://avatars3.githubusercontent.com/u/28927258?s=460&v=4"
},
{
"title": "AWS Upload a file to S3 to trigger a Lambda function example in NodeJS",
"name": "aws-node-upload-to-s3-and-postprocess",
"description": "This example shows how to upload a file to S3 using a HTML form, and have S3 trigger a lambda function.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-upload-to-s3-and-postprocess",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/walgarch",
"authorName": "walgarch",
"authorAvatar": "https://avatars1.githubusercontent.com/u/32451330?v=4&s=140"
},
{
"title": "Serverless side rendering with Vue.js and Nuxt.js",
"name": "aws-node-vue-nuxt-ssr",
"description": "This project demonstrates how to use Nuxt.js to create a server-side rendered Vue.js app on AWS Lambda and AWS API Gateway.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-vue-nuxt-ssr",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/adnanrahic",
"authorName": "adnanrahic",
"authorAvatar": "https://avatars1.githubusercontent.com/u/15029531?s=400&v=4"
},
{
"title": "Simple Websocket Authorizers",
"name": "aws-node-websockets-authorizers",
"description": "The example shows you how to deploy simple websocket authorizers",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node-websockets-authorizers",
"framework": "v1",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/eahefnawy",
"authorName": "Eslam λ Hefnawy",
"authorAvatar": "https://avatars3.githubusercontent.com/u/2312463?v=4&s=140"
},
{
"title": "AWS NodeJS Example",
"name": "aws-node",
"description": "This template demonstrates how to deploy a simple NodeJS function running on AWS Lambda using the Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-node",
"framework": "v4",
"language": "node",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4",
"priority": 5
},
{
"title": "AWS Serverless Alexa Skill example in Python",
"name": "aws-python-alexa-skill",
"description": "This example demonstrates how to setup your own Alexa skill using AWS Lambdas.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-alexa-skill",
"framework": "v1",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "AWS API Gateway Custom Authorizer Function with Auth0 example in Python",
"name": "aws-python-auth0-custom-authorizers-api",
"description": "This is an example of how to protect API endpoints with Auth0, JSON Web Tokens (jwt) and a custom authorizer lambda function in Python 3.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-auth0-custom-authorizers-api",
"framework": "v1",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/BrianAndersen78",
"authorName": "BrianAndersen78",
"authorAvatar": "https://avatars3.githubusercontent.com/u/30560831?v=4&s=140"
},
{
"title": "Python Flask API on AWS",
"name": "aws-python-flask-api",
"description": "This template demonstrates how to develop and deploy a simple Python Flask API running on AWS Lambda using the Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-flask-api",
"framework": "v4",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4",
"priority": 7
},
{
"title": "Python Flask API backed by DynamoDB on AWS",
"name": "aws-python-flask-dynamodb-api",
"description": "This template demonstrates how to develop and deploy a simple Python Flask API service backed by DynamoDB running on AWS Lambda using the Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-flask-dynamodb-api",
"framework": "v4",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4",
"priority": 8
},
{
"title": "Simple LINE bot",
"name": "aws-python-line-echo-bot",
"description": "This is a simple echo bot on LINE bot.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-line-echo-bot",
"framework": "v1",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/NiJia",
"authorName": "NiJia",
"authorAvatar": "https://avatars0.githubusercontent.com/u/418548?v=4&s=140"
},
{
"title": "AWS Serverless REST API with DynamoDB store and presigned URLs example in Python 3.6.",
"name": "aws-python-pynamodb-s3-sigurl",
"description": "This example demonstrates how to setup a RESTful Web Service allowing you to create, list, get, update and delete Assets. DynamoDB is used to store the data.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-pynamodb-s3-sigurl",
"framework": "v1",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/bedge",
"authorName": "Bruce Edge",
"authorAvatar": "https://avatars1.githubusercontent.com/u/499317?v=4&s=140"
},
{
"title": "AWS Serverless REST API with DynamoDB store example in Python",
"name": "aws-python-rest-api-with-dynamodb",
"description": "This example demonstrates how to setup a RESTful Web Service allowing you to create, list, get, update and delete Todos. DynamoDB is used to store the data.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-rest-api-with-dynamodb",
"framework": "v1",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/godfreyhobbs",
"authorName": "Godfrey Hobbs",
"authorAvatar": "https://avatars1.githubusercontent.com/u/8434141?v=4&s=140"
},
{
"title": "AWS Serverless REST API with FaunaDB store example in Python",
"name": "aws-python-rest-api-with-faunadb",
"description": "This example demonstrates how to setup a RESTful Web Service allowing you to create, list, get, update and delete Todos. FaunaDB is used to store the data.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-rest-api-with-faunadb",
"framework": "v1",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140"
},
{
"title": "AWS Python Rest API with Pymongo",
"name": "aws-python-rest-api-with-pymongo",
"description": "AWS Python Rest API with Pymongo Example",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-rest-api-with-pymongo",
"framework": "v1",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/gsweene2",
"authorName": "Garrett Sweeney",
"authorAvatar": ""
},
{
"title": "AWS Serverless REST API with DynamoDB store example in Python",
"name": "aws-python-rest-api-with-pynamodb",
"description": "This example demonstrates how to setup a RESTful Web Service allowing you to create, list, get, update and delete Todos. DynamoDB is used to store the data.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-rest-api-with-pynamodb",
"framework": "v1",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/helveticafire",
"authorName": "Ben Fitzgerald",
"authorAvatar": "https://avatars0.githubusercontent.com/u/1323872?v=4&s=140"
},
{
"title": "AWS Simple HTTP Endpoint example in Python",
"name": "aws-python-rest-api",
"description": "This template demonstrates how to make a simple REST API with Python running on AWS Lambda and API Gateway using the traditional Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-rest-api",
"framework": "v2",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4"
},
{
"title": "AWS Simple HTTP Endpoint example in Python",
"name": "aws-python-http-api",
"description": "This template demonstrates how to make a simple HTTP API with Python running on AWS Lambda and API Gateway using the Serverless Framework.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-rest-api",
"framework": "v4",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/serverless",
"authorName": "Serverless, inc.",
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4",
"priority": 6
},
{
"title": "AWS Python Scheduled Cron example in Python",
"name": "aws-python-scheduled-cron",
"description": "This is an example of creating a function that runs as a cron job using the serverless ''schedule'' event.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-scheduled-cron",
"framework": "v4",
"language": "python",
"platform": "aws",
"authorLink": "https://github.com/rupakg",
"authorName": "Rupak Ganguly",
"authorAvatar": "https://avatars0.githubusercontent.com/u/8188?v=4&s=140",
"priority": 9
},
{
"title": "AWS Simple HTTP Endpoint example in Python",
"name": "aws-python-simple-http-endpoint",
"description": "This example demonstrates how to setup a simple HTTP GET endpoint. Once you ping it, it will reply with the current time.",
"githubUrl": "https://github.com/serverless/examples/tree/master/aws-python-simple-http-endpoint",
"framework": "v1",