Skip to content

Commit 0a76938

Browse files
authored
Merge pull request serverless#262 from eddielisc/patch-1
added sns api example
2 parents b16cd7a + 61a5da7 commit 0a76938

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,11 @@ serverless install -u https://github.com/author/project -n my-project
131131
| **[Serverless Ssh Command](https://github.com/upgle/serverless-openwhisk-ssh)** <br/> Example of executing ssh command with OpenWhisk | [upgle](http://github.com/upgle) |
132132
| **[Serverless Telegram Bot](https://github.com/jonatasbaldin/serverless-telegram-bot)** <br/> This example demonstrates how to setup an echo Telegram Bot using the Serverless Framework ⚡🤖 | [jonatasbaldin](http://github.com/jonatasbaldin) |
133133
| **[Serverless Ffmpeg](https://github.com/kvaggelakos/serverless-ffmpeg)** <br/> Bucket event driven FFMPEG using serverless. Input bucket => Serverless ffmpeg => Output bucket. | [kvaggelakos](http://github.com/kvaggelakos) |
134+
| **[Serverless Sns Api](https://github.com/eddielisc/serverless-sns-api)** <br/> Build a SNS service on AWS, support backend API for SNS by device, by group and by user | [eddielisc](http://github.com/eddielisc) |
134135
| **[Stack Overflow Monitor](https://github.com/picsoung/stackoverflowmonitor)** <br/> Monitor Stack Overflow questions and post them in a Slack channel | [picsoung](http://github.com/picsoung) |
135136
| **[Adoptable Pet Bot](https://github.com/lynnaloo/adoptable-pet-bot)** <br/> Tweets adoptable pets using Serverless (Node.js) and AWS Lambda | [lynnaloo](http://github.com/lynnaloo) |
136137
| **[Aws Ses Serverless Example](https://github.com/lakshmantgld/aws-ses-serverless-example)** <br/> AWS SES example in NodeJS using lambda | [lakshmantgld](http://github.com/lakshmantgld) |
137-
| **[Babelbot](https://github.com/abiglobalhealth/babelbot)** <br/> Lambda + API Gateway: Zero-to-chatbot in <10 lines of JS. Built-in integrations for Messenger, Telegram, Kik, Line, Twilio, Skype, and Wechat. Or roll your own! | [abiglobalhealth](http://github.com/abiglobalhealth) |
138+
| **[Bablebot](https://github.com/abiglobalhealth/babelbot)** <br/> Lambda + API Gateway: Zero-to-chatbot in <10 lines of JS. Built-in integrations for Messenger, Telegram, Kik, Line, Twilio, Skype, and Wechat. Or roll your own! | [abiglobalhealth](http://github.com/abiglobalhealth) |
138139
| **[Bittman](https://github.com/rhlsthrm/bittman)** <br/> A serverless project that follows a stock trading algorithm and uses scheduled functions to save data to DynamoDB and send emails through Mailgun. | [rhlsthrm](http://github.com/rhlsthrm) |
139140
| **[Cordis Serverless](https://github.com/marzeelabs/cordis-serverless)** <br/> A serverless API for EU Cordis data | [marzeelabs](http://github.com/marzeelabs) |
140141
| **[Faultline](https://github.com/faultline/faultline)** <br/> Error tracking tool on AWS managed services. | [faultline](http://github.com/faultline) |

aws-node-graphql-api-with-dynamodb/handler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,5 @@ module.exports.query = (event, context, callback) =>
8080
graphql(schema, event.queryStringParameters.query)
8181
.then(
8282
result => callback(null, { statusCode: 200, body: JSON.stringify(result) }),
83-
err => callback(err)
83+
err => callback(err),
8484
);

community-examples.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
},
77
{
88
"name": "bablebot",
9-
"name": "babelbot",
109
"description": "Lambda + API Gateway: Zero-to-chatbot in <10 lines of JS. Built-in integrations for Messenger, Telegram, Kik, Line, Twilio, Skype, and Wechat. Or roll your own!",
1110
"githubUrl": "https://github.com/abiglobalhealth/babelbot"
1211
},
@@ -368,5 +367,10 @@
368367
"name": "Personal Access Tokens Cron Check",
369368
"description": "Audit for leaked PAT in your Contentful organization. How to use serverless as cronjobs to keep your Personal Access Tokens secure",
370369
"githubUrl": "https://github.com/madtrick/cfpat-audit"
370+
},
371+
{
372+
"name": "Serverless sns api",
373+
"description": "Build a SNS service on AWS, support backend API for SNS by device, by group and by user",
374+
"githubUrl": "https://github.com/eddielisc/serverless-sns-api"
371375
}
372376
]

0 commit comments

Comments
 (0)