https://github.com/live-apps-in/kitty-alexa-skill
Amazon Alexa Skill for kitty chan
https://github.com/live-apps-in/kitty-alexa-skill
alexa alexa-skill aws lambda serverless typescript
Last synced: 2 months ago
JSON representation
Amazon Alexa Skill for kitty chan
- Host: GitHub
- URL: https://github.com/live-apps-in/kitty-alexa-skill
- Owner: live-apps-in
- Created: 2022-11-07T15:10:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-03T08:23:55.000Z (about 3 years ago)
- Last Synced: 2025-08-16T07:40:46.107Z (10 months ago)
- Topics: alexa, alexa-skill, aws, lambda, serverless, typescript
- Language: TypeScript
- Homepage:
- Size: 10.2 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Serverless Framework AWS NodeJS Example
This template demonstrates how to deploy a NodeJS function running on AWS Lambda using the traditional Serverless Framework. The deployed function does not include any event definitions as well as any kind of persistence (database). For more advanced configurations check out the [examples repo](https://github.com/serverless/examples/) which includes integrations with SQS, DynamoDB or examples of functions that are triggered in `cron`-like manner. For details about configuration of specific `events`, please refer to our [documentation](https://www.serverless.com/framework/docs/providers/aws/events/).
## Usage
### Deployment
In order to deploy the example, you need to run the following command:
```
$ serverless deploy
```
After running deploy, you should see output similar to:
```bash
Deploying aws-node-project to stage dev (us-east-1)
✔ Service deployed to stack aws-node-project-dev (112s)
functions:
hello: aws-node-project-dev-hello (1.5 kB)
```
### Invocation
After successful deployment, you can invoke the deployed function by using the following command:
```bash
serverless invoke --function hello
```
Which should result in response similar to the following:
```json
{
"statusCode": 200,
"body": "{\n \"message\": \"Go Serverless v3.0! Your function executed successfully!\",\n \"input\": {}\n}"
}
```
### Local development
You can invoke your function locally by using the following command:
```bash
serverless invoke local --function hello
```
Which should result in response similar to the following:
```
{
"statusCode": 200,
"body": "{\n \"message\": \"Go Serverless v3.0! Your function executed successfully!\",\n \"input\": \"\"\n}"
}
```