Skip to content

Commit 593686c

Browse files
committed
feat: Replace REST examples with HTTP in examples.json
1 parent 0b6d87d commit 593686c

File tree

1 file changed

+42
-30
lines changed

1 file changed

+42
-30
lines changed

examples.json

Lines changed: 42 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -424,11 +424,11 @@
424424
"authorAvatar": "https://avatars2.githubusercontent.com/u/416477?v=4&s=140"
425425
},
426426
{
427-
"title": "TODO",
428-
"name": "aws-node-rest-api-mongodb",
427+
"title": "AWS HTTP API with MongoDB",
428+
"name": "aws-node-http-api-mongodb",
429429
"description": "This example demonstrate how to use MongoDB with AWS and Serverless.",
430-
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-rest-api-mongodb",
431-
"framework": "v1",
430+
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-http-api-mongodb",
431+
"framework": "v3",
432432
"language": "node",
433433
"platform": "aws",
434434
"authorLink": "https://github.com/lucianopf",
@@ -440,7 +440,7 @@
440440
"name": "aws-node-typescript",
441441
"description": "This template demonstrates how to deploy a TypeScript function running on AWS Lambda using the traditional Serverless Framework.",
442442
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-typescript",
443-
"framework": "v2",
443+
"framework": "v3",
444444
"language": "node",
445445
"platform": "aws",
446446
"authorLink": "https://github.com/serverless",
@@ -450,10 +450,10 @@
450450
},
451451
{
452452
"title": "AWS Simple HTTP Endpoint example in NodeJS with Typescript",
453-
"name": "aws-node-rest-api-typescript-simple",
454-
"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.",
455-
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-rest-api-typescript-simple",
456-
"framework": "v1",
453+
"name": "aws-node-http-api-typescript-simple",
454+
"description": "A simple HTTP API with TypeScript running on AWS Lambda and API Gateway deployed with Serverless Framework.",
455+
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-http-api-typescript",
456+
"framework": "v3",
457457
"language": "node",
458458
"platform": "aws",
459459
"authorLink": "https://github.com/serverless",
@@ -485,11 +485,11 @@
485485
"authorAvatar": "https://avatars1.githubusercontent.com/u/13746650?v=4&s=140"
486486
},
487487
{
488-
"title": "AWS Serverless REST API example in NodeJS",
489-
"name": "aws-node-rest-api-with-dynamodb",
488+
"title": "AWS Serverless HTTP API example in NodeJS",
489+
"name": "aws-node-http-api-with-dynamodb",
490490
"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.",
491-
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-rest-api-with-dynamodb",
492-
"framework": "v1",
491+
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-http-api-with-dynamodb",
492+
"framework": "v3",
493493
"language": "node",
494494
"platform": "aws",
495495
"authorLink": "https://github.com/ozbillwang",
@@ -498,17 +498,29 @@
498498
},
499499
{
500500
"title": "AWS Simple HTTP Endpoint example in NodeJS",
501-
"name": "aws-node-rest-api",
502-
"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.",
503-
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-rest-api",
504-
"framework": "v2",
501+
"name": "aws-node-http-api",
502+
"description": "This template demonstrates how to make a simple HTTP API with Node.js running on AWS Lambda and API Gateway using Serverless Framework.",
503+
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-http-api",
504+
"framework": "v3",
505505
"language": "node",
506506
"platform": "aws",
507507
"authorLink": "https://github.com/serverless",
508508
"authorName": "Serverless, inc.",
509509
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4",
510510
"priority": 1
511511
},
512+
{
513+
"title": "AWS HTTP API using NodeJS and DynamoDB",
514+
"name": "aws-node-http-api-dynamodb",
515+
"description": "This template demonstrates how to make a simple HTTP API with Node.js using DynamoDB as a database.",
516+
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-node-http-api-dynamodb",
517+
"framework": "v3",
518+
"language": "node",
519+
"platform": "aws",
520+
"authorLink": "https://github.com/serverless",
521+
"authorName": "Serverless, inc.",
522+
"authorAvatar": "https://avatars1.githubusercontent.com/u/13742415?s=200&v=4"
523+
},
512524
{
513525
"title": "AWS S3 File Replicator",
514526
"name": "aws-node-s3-file-replicator",
@@ -914,11 +926,11 @@
914926
"authorAvatar": "https://avatars1.githubusercontent.com/u/499317?v=4&s=140"
915927
},
916928
{
917-
"title": "AWS Serverless REST API with DynamoDB store example in Python",
918-
"name": "aws-python-rest-api-with-dynamodb",
919-
"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.",
920-
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-python-rest-api-with-dynamodb",
921-
"framework": "v1",
929+
"title": "AWS HTTP API with DynamoDB and Python",
930+
"name": "aws-python-http-api-with-dynamodb",
931+
"description": "This example demonstrates how to setup an HTTP API to create, list, get, update and delete Todos. DynamoDB is used to store the data.",
932+
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-python-http-api-with-dynamodb",
933+
"framework": "v3",
922934
"language": "python",
923935
"platform": "aws",
924936
"authorLink": "https://github.com/godfreyhobbs",
@@ -950,11 +962,11 @@
950962
"authorAvatar": ""
951963
},
952964
{
953-
"title": "AWS Serverless REST API with DynamoDB store example in Python",
954-
"name": "aws-python-rest-api-with-pynamodb",
965+
"title": "AWS Serverless HTTP API with DynamoDB store example in Python",
966+
"name": "aws-python-http-api-with-pynamodb",
955967
"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.",
956-
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-python-rest-api-with-pynamodb",
957-
"framework": "v1",
968+
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-python-http-api-with-pynamodb",
969+
"framework": "v3",
958970
"language": "python",
959971
"platform": "aws",
960972
"authorLink": "https://github.com/helveticafire",
@@ -963,10 +975,10 @@
963975
},
964976
{
965977
"title": "AWS Simple HTTP Endpoint example in Python",
966-
"name": "aws-python-rest-api",
967-
"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.",
968-
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-python-rest-api",
969-
"framework": "v2",
978+
"name": "aws-python-http-api",
979+
"description": "This template demonstrates how to make a simple HTTP API with Python running on AWS Lambda and API Gateway using Serverless Framework.",
980+
"githubUrl": "https://github.com/serverless/examples/tree/v3/aws-python-http-api",
981+
"framework": "v3",
970982
"language": "python",
971983
"platform": "aws",
972984
"authorLink": "https://github.com/serverless",

0 commit comments

Comments
 (0)