+You can display Amazon Alexa Home [Cards](https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/providing-home-cards-for-the-amazon-alexa-app#Creating%20a%20Home%20Card%20to%20Display%20Text%20and%20an%20Image) by handling the card [object](https://www.npmjs.com/package/alexa-app#card-examples) returned in the response method. When using alexa-app, the home card will be displayed in the Amazon Alexa App on your mobile device. When using chatskills, the home card can be handled in the `chatskills.respond()` callback method, which returns two arguments: `response` and `card`.
+
+Using the card object, you can display the card's text and image in any manner you wish. For example, if hosting your chatskills app in Slack, you may want to show the image as embedded media. Likewise, if hosting as a text chatbot on the console, you may simply want to output the card as text.
+
+Below is an example.
+
+```javascript
+app.intent('example', {
+"slots": {},
+"utterances": ["show a card"]
+ }, function(req, res) {
+// Show home card in Alexa app.
+res.card({
+ type:'Standard',
+ title:'My Awesome Card', // this is not required for type Simple or Standard
+ text:'This is an example of an Alexa home card.',
0 comments on commit
54920f3