From 59183b2cdea46394c89fbe6b625d12befaaaad80 Mon Sep 17 00:00:00 2001 From: Scott Gellock Date: Mon, 18 Feb 2019 07:10:44 -0800 Subject: [PATCH] Fixes 1155: Update node and typescript samples to set min version of nodes (#1250) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update README.md’s to reference 10.14 as the min version of Node.js - Update PREREQUISITES.md to reference 10.14 as the min version of Node.js --- samples/javascript_nodejs/01.console-echo/README.md | 2 +- samples/javascript_nodejs/02.a.echobot/README.md | 2 +- samples/javascript_nodejs/02.b.echobot-with-counter/README.md | 2 +- samples/javascript_nodejs/03.welcome-users/README.md | 2 +- samples/javascript_nodejs/04.simple-prompt/README.md | 2 +- samples/javascript_nodejs/05.multi-turn-prompt/README.md | 2 +- samples/javascript_nodejs/06.using-cards/README.md | 2 +- samples/javascript_nodejs/07.using-adaptive-cards/README.md | 2 +- samples/javascript_nodejs/08.suggested-actions/README.md | 2 +- samples/javascript_nodejs/09.message-routing/README.md | 2 +- samples/javascript_nodejs/10.prompt-validations/README.md | 2 +- samples/javascript_nodejs/11.qnamaker/PREREQUISITES.md | 2 +- samples/javascript_nodejs/12.nlp-with-luis/PREREQUISITES.md | 2 +- samples/javascript_nodejs/13.basic-bot/PREREQUISITES.md | 2 +- samples/javascript_nodejs/14.nlp-with-dispatch/PREREQUISITES.md | 2 +- samples/javascript_nodejs/15.handling-attachments/README.md | 2 +- samples/javascript_nodejs/16.proactive-messages/README.md | 2 +- .../javascript_nodejs/17.multilingual-conversations/README.md | 2 +- .../javascript_nodejs/18.bot-authentication/PREREQUISITES.md | 2 +- samples/javascript_nodejs/18.bot-authentication/README.md | 2 +- samples/javascript_nodejs/19.custom-dialogs/README.md | 2 +- .../javascript_nodejs/20.qna-with-appinsights/PREREQUISITES.md | 2 +- .../javascript_nodejs/21.luis-with-appinsights/PREREQUISITES.md | 2 +- samples/javascript_nodejs/23.facebook-events/README.md | 2 +- .../javascript_nodejs/24.bot-authentication-msgraph/README.md | 2 +- samples/javascript_nodejs/25.logger/README.md | 2 +- samples/javascript_nodejs/26.transcript-logger/README.md | 2 +- samples/javascript_nodejs/50.diceroller-skill/README.md | 2 +- samples/javascript_nodejs/51.cafe-bot/README.md | 2 +- samples/javascript_typescript/01.console-echo/README.md | 2 +- samples/javascript_typescript/02.a.echobot/README.md | 2 +- .../javascript_typescript/02.b.echobot-with-counter/README.md | 2 +- samples/javascript_typescript/11.qnamaker/PREREQUISITES.md | 2 +- samples/javascript_typescript/12.nlp-with-luis/PREREQUISITES.md | 2 +- samples/javascript_typescript/13.basic-bot/PREREQUISITES.md | 2 +- 35 files changed, 35 insertions(+), 35 deletions(-) diff --git a/samples/javascript_nodejs/01.console-echo/README.md b/samples/javascript_nodejs/01.console-echo/README.md index 34a6dbb39f..52195d9ea2 100644 --- a/samples/javascript_nodejs/01.console-echo/README.md +++ b/samples/javascript_nodejs/01.console-echo/README.md @@ -4,7 +4,7 @@ Bot Framework v4 console bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how to create a simple bot that you can talk to from the console window. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/02.a.echobot/README.md b/samples/javascript_nodejs/02.a.echobot/README.md index 7aaf3ff8d2..02afc76144 100644 --- a/samples/javascript_nodejs/02.a.echobot/README.md +++ b/samples/javascript_nodejs/02.a.echobot/README.md @@ -4,7 +4,7 @@ Bot Framework v4 echo bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how to create a simple bot that accepts input from the user and echoes it back. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/02.b.echobot-with-counter/README.md b/samples/javascript_nodejs/02.b.echobot-with-counter/README.md index d2a5570713..33761484c4 100644 --- a/samples/javascript_nodejs/02.b.echobot-with-counter/README.md +++ b/samples/javascript_nodejs/02.b.echobot-with-counter/README.md @@ -4,7 +4,7 @@ Bot Framework v4 echobot with counter sample This bot has been created using [Microsoft Bot Framework][1], it shows how to create a simple bot with state. The bot maintains a simple counter that increases with each message from the user. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/03.welcome-users/README.md b/samples/javascript_nodejs/03.welcome-users/README.md index 0d827a2358..6c79ab12a0 100644 --- a/samples/javascript_nodejs/03.welcome-users/README.md +++ b/samples/javascript_nodejs/03.welcome-users/README.md @@ -4,7 +4,7 @@ Bot Framework v4 welcome users bot sample This bot has been created using [Microsoft Bot Framework][1], is shows how to welcome a user when join the conversation. The welcoming pattern shown in this bot is applicable for personal one-to-one conversation with bots. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/04.simple-prompt/README.md b/samples/javascript_nodejs/04.simple-prompt/README.md index 2cd4399374..cf7f118e56 100644 --- a/samples/javascript_nodejs/04.simple-prompt/README.md +++ b/samples/javascript_nodejs/04.simple-prompt/README.md @@ -4,7 +4,7 @@ Bot Framework v4 simple prompt bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how to use the prompts classes included in `botbuilder-dialogs`. This bot will ask for the user's name, then store the response. It demonstrates a 2-step dialog flow using a prompt, as well as using the state accessors to store and retrieve values. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/05.multi-turn-prompt/README.md b/samples/javascript_nodejs/05.multi-turn-prompt/README.md index fc52443967..50cc32fad0 100644 --- a/samples/javascript_nodejs/05.multi-turn-prompt/README.md +++ b/samples/javascript_nodejs/05.multi-turn-prompt/README.md @@ -4,7 +4,7 @@ Bot Framework v4 multi-turn prompt bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how to use the prompts classes included in `botbuilder-dialogs`. This bot will ask for the user's name and age, then store the responses. It demonstrates a multi-turn dialog flow using a text prompt, a number prompt, and state accessors to store and retrieve values. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/06.using-cards/README.md b/samples/javascript_nodejs/06.using-cards/README.md index 1aa63d4c58..5fa24fdaf7 100644 --- a/samples/javascript_nodejs/06.using-cards/README.md +++ b/samples/javascript_nodejs/06.using-cards/README.md @@ -4,7 +4,7 @@ Bot Framework v4 using cards bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how to create a bot that uses rich cards to enhance your bot design. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/07.using-adaptive-cards/README.md b/samples/javascript_nodejs/07.using-adaptive-cards/README.md index 1032f7a05a..f1f290eae8 100644 --- a/samples/javascript_nodejs/07.using-adaptive-cards/README.md +++ b/samples/javascript_nodejs/07.using-adaptive-cards/README.md @@ -4,7 +4,7 @@ Bot Framework v4 using adaptive cards bot sample This sample shows how to send an Adaptive Card. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/08.suggested-actions/README.md b/samples/javascript_nodejs/08.suggested-actions/README.md index bc39230591..58e2cf4d25 100644 --- a/samples/javascript_nodejs/08.suggested-actions/README.md +++ b/samples/javascript_nodejs/08.suggested-actions/README.md @@ -4,7 +4,7 @@ Bot Framework v4 suggested actions bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how to use suggested actions. Suggested actions enable your bot to present buttons that the user can tap to provide input. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/09.message-routing/README.md b/samples/javascript_nodejs/09.message-routing/README.md index 7201474897..03465d4a78 100644 --- a/samples/javascript_nodejs/09.message-routing/README.md +++ b/samples/javascript_nodejs/09.message-routing/README.md @@ -6,7 +6,7 @@ This bot has been created using [Microsoft Bot Framework][1], it shows how to: - Prompt for and validate requests for information from the user ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/10.prompt-validations/README.md b/samples/javascript_nodejs/10.prompt-validations/README.md index 17979badc8..ccd7fbb5c7 100644 --- a/samples/javascript_nodejs/10.prompt-validations/README.md +++ b/samples/javascript_nodejs/10.prompt-validations/README.md @@ -4,7 +4,7 @@ Bot Framework v4 prompt validation bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how a conversation between a bot and a user often involves asking (prompting) the user for information. This sample shows how to use the prompt classes included in `botbuilder-dialogs`. This bot will ask for multiple pieces of information from the user, each using a different type of prompt, each with its own validation rules. This sample also demonstrates using the `ComponentDialog` class to encapsulate related sub-dialogs. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/11.qnamaker/PREREQUISITES.md b/samples/javascript_nodejs/11.qnamaker/PREREQUISITES.md index 259bca9232..a47cc6299f 100644 --- a/samples/javascript_nodejs/11.qnamaker/PREREQUISITES.md +++ b/samples/javascript_nodejs/11.qnamaker/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [QnA Maker Service][1], an AI based cognitive service, to implement a powerful question and answer service from your semi-structured content. The Bot Framework provides a set of CLI tools that will help setup QnA Maker so the bot can be run and tested locally. Additionally, prerequisites are provided that will enable the bot to be deployed to Azure using additional CLI tools. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher. diff --git a/samples/javascript_nodejs/12.nlp-with-luis/PREREQUISITES.md b/samples/javascript_nodejs/12.nlp-with-luis/PREREQUISITES.md index 1ee333d852..754caa6516 100644 --- a/samples/javascript_nodejs/12.nlp-with-luis/PREREQUISITES.md +++ b/samples/javascript_nodejs/12.nlp-with-luis/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [LUIS][1], an AI based cognitive service, to implement language understanding. The Bot Framework provides a set of CLI tools that will help setup LUIS so the bot can be run and tested locally. Additionally, prerequisites are provided that will enable the bot to be deployed to Azure using additional CLI tools. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher. diff --git a/samples/javascript_nodejs/13.basic-bot/PREREQUISITES.md b/samples/javascript_nodejs/13.basic-bot/PREREQUISITES.md index 1ee333d852..754caa6516 100644 --- a/samples/javascript_nodejs/13.basic-bot/PREREQUISITES.md +++ b/samples/javascript_nodejs/13.basic-bot/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [LUIS][1], an AI based cognitive service, to implement language understanding. The Bot Framework provides a set of CLI tools that will help setup LUIS so the bot can be run and tested locally. Additionally, prerequisites are provided that will enable the bot to be deployed to Azure using additional CLI tools. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher. diff --git a/samples/javascript_nodejs/14.nlp-with-dispatch/PREREQUISITES.md b/samples/javascript_nodejs/14.nlp-with-dispatch/PREREQUISITES.md index e704c31a99..6a3496029e 100644 --- a/samples/javascript_nodejs/14.nlp-with-dispatch/PREREQUISITES.md +++ b/samples/javascript_nodejs/14.nlp-with-dispatch/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [QnA Maker Service][1], an AI based cognitive service, to implement a powerful question and answer service from your semi-structured content. The Bot Framework provides a set of CLI tools that will help setup QnA Maker so the bot can be run and tested locally. Additionally, prerequisites are provided that will enable the bot to be deployed to Azure using additional CLI tools. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher. diff --git a/samples/javascript_nodejs/15.handling-attachments/README.md b/samples/javascript_nodejs/15.handling-attachments/README.md index 07ce9e47b2..b6b15c2e61 100644 --- a/samples/javascript_nodejs/15.handling-attachments/README.md +++ b/samples/javascript_nodejs/15.handling-attachments/README.md @@ -4,7 +4,7 @@ Bot Framework v4 handling attachments bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how to send outgoing attachments and how to save attachments to disk. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/16.proactive-messages/README.md b/samples/javascript_nodejs/16.proactive-messages/README.md index 0474b85bdc..5cbd0f83db 100644 --- a/samples/javascript_nodejs/16.proactive-messages/README.md +++ b/samples/javascript_nodejs/16.proactive-messages/README.md @@ -19,7 +19,7 @@ and allow the conversation to continue in the meantime. When the bot finishes co question, it will share that information with the user. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/17.multilingual-conversations/README.md b/samples/javascript_nodejs/17.multilingual-conversations/README.md index 60766c11f2..ca3869ecc3 100644 --- a/samples/javascript_nodejs/17.multilingual-conversations/README.md +++ b/samples/javascript_nodejs/17.multilingual-conversations/README.md @@ -4,7 +4,7 @@ Bot Framework v4 multilingual bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how to translate incoming and outgoing text using a custom middleware and the [Microsoft Translator Text API](https://docs.microsoft.com/en-us/azure/cognitive-services/translator/). ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/18.bot-authentication/PREREQUISITES.md b/samples/javascript_nodejs/18.bot-authentication/PREREQUISITES.md index fa5df9e8db..ea112c303d 100644 --- a/samples/javascript_nodejs/18.bot-authentication/PREREQUISITES.md +++ b/samples/javascript_nodejs/18.bot-authentication/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [Azure Bot Service][1] to configure an authentication channel. The authentication channel will provide the capabilities of handling the OAuth flow for our bot. The prerequisites outlined below will provide the CLI tools and account information the sample will use to provision an Azure Bot Service. Once the Azure Bot Service has been provisioned, the sample will walk you through the steps required to setup an authentication channel. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher. diff --git a/samples/javascript_nodejs/18.bot-authentication/README.md b/samples/javascript_nodejs/18.bot-authentication/README.md index 3208485d46..4e99c16c51 100644 --- a/samples/javascript_nodejs/18.bot-authentication/README.md +++ b/samples/javascript_nodejs/18.bot-authentication/README.md @@ -4,7 +4,7 @@ Bot Framework v4 bot authentication sample This bot has been created using [Microsoft Bot Framework][1], it shows how to use authentication in your bot using OAuth. The sample uses the bot authentication capabilities in [Azure Bot Service][1], providing features to make it easier to develop a bot that authenticates users to various identity providers such as Azure AD (Azure Active Directory), GitHub, Uber, etc. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/19.custom-dialogs/README.md b/samples/javascript_nodejs/19.custom-dialogs/README.md index 9fca9bb070..4bc4a9ec29 100644 --- a/samples/javascript_nodejs/19.custom-dialogs/README.md +++ b/samples/javascript_nodejs/19.custom-dialogs/README.md @@ -7,7 +7,7 @@ BotFramework provides a built-in base class called `Dialog`. By subclassing `Dia ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/20.qna-with-appinsights/PREREQUISITES.md b/samples/javascript_nodejs/20.qna-with-appinsights/PREREQUISITES.md index f3e2c12380..67bf9fb549 100644 --- a/samples/javascript_nodejs/20.qna-with-appinsights/PREREQUISITES.md +++ b/samples/javascript_nodejs/20.qna-with-appinsights/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [QnA Maker][1] to power a question and answer service from your semi-structured content. The Bot Framework provides a set of CLI tools that will help setup QnA Maker so the bot can be run and tested locally. Additionally, prerequisites are provided that will enable the bot to be deployed to Azure using additional CLI tools. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher. diff --git a/samples/javascript_nodejs/21.luis-with-appinsights/PREREQUISITES.md b/samples/javascript_nodejs/21.luis-with-appinsights/PREREQUISITES.md index 1ee333d852..754caa6516 100644 --- a/samples/javascript_nodejs/21.luis-with-appinsights/PREREQUISITES.md +++ b/samples/javascript_nodejs/21.luis-with-appinsights/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [LUIS][1], an AI based cognitive service, to implement language understanding. The Bot Framework provides a set of CLI tools that will help setup LUIS so the bot can be run and tested locally. Additionally, prerequisites are provided that will enable the bot to be deployed to Azure using additional CLI tools. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher. diff --git a/samples/javascript_nodejs/23.facebook-events/README.md b/samples/javascript_nodejs/23.facebook-events/README.md index 5fe4083839..362d13c44d 100644 --- a/samples/javascript_nodejs/23.facebook-events/README.md +++ b/samples/javascript_nodejs/23.facebook-events/README.md @@ -5,7 +5,7 @@ This sample shows how to integrate and consume Facebook specific payloads, such Since Bot Framework supports multiple Facebook pages for a single bot, we also show how to know the page to which the message was sent, so developers can have custom behavior per page. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/24.bot-authentication-msgraph/README.md b/samples/javascript_nodejs/24.bot-authentication-msgraph/README.md index e11dce5c3d..0d94b19e70 100644 --- a/samples/javascript_nodejs/24.bot-authentication-msgraph/README.md +++ b/samples/javascript_nodejs/24.bot-authentication-msgraph/README.md @@ -16,7 +16,7 @@ The [scopes](https://developer.microsoft.com/en-us/graph/docs/concepts/permissio - `User.ReadBasic.All` ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/25.logger/README.md b/samples/javascript_nodejs/25.logger/README.md index bdabba5052..e89782f931 100644 --- a/samples/javascript_nodejs/25.logger/README.md +++ b/samples/javascript_nodejs/25.logger/README.md @@ -6,7 +6,7 @@ This bot has been created using [Microsoft Bot Framework][1], it shows how to cr In this example, the bot creates a new folder in the project directory called `logs` and the conversations' transcripts are saved as `.log` files after the user has chatted with the bot. The bot also logs the conversation to the terminal as the user chats with it. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/26.transcript-logger/README.md b/samples/javascript_nodejs/26.transcript-logger/README.md index 52b6f63d18..8ab4900305 100644 --- a/samples/javascript_nodejs/26.transcript-logger/README.md +++ b/samples/javascript_nodejs/26.transcript-logger/README.md @@ -8,7 +8,7 @@ This implementation contains an object that saves ongoing conversations and writ In this example, the bot creates a new folder in the project directory called `logs` and the conversations' transcripts are saved as `.log` files after the user has chatted with the bot. The bot also logs the conversation to the terminal as the user chats with it. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_nodejs/50.diceroller-skill/README.md b/samples/javascript_nodejs/50.diceroller-skill/README.md index 25a8c0e3ba..2edc4b4655 100644 --- a/samples/javascript_nodejs/50.diceroller-skill/README.md +++ b/samples/javascript_nodejs/50.diceroller-skill/README.md @@ -4,7 +4,7 @@ Bot Framework v4 dice roller skill sample This sample demonstrates how to implement a Cortana Skill that properly handles EndOfConversation events. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version diff --git a/samples/javascript_nodejs/51.cafe-bot/README.md b/samples/javascript_nodejs/51.cafe-bot/README.md index c6226bd6a0..836f10a140 100644 --- a/samples/javascript_nodejs/51.cafe-bot/README.md +++ b/samples/javascript_nodejs/51.cafe-bot/README.md @@ -79,7 +79,7 @@ Contoso cafe bot is a fairly sophisticated bot sample that uses the following co # Prerequisites ## Install CLI tools -Ensure you have [Node.js](https://nodejs.org/) version 8.5 or higher +Ensure you have [Node.js](https://nodejs.org/) version 10.14 or higher - In a terminal ```bash diff --git a/samples/javascript_typescript/01.console-echo/README.md b/samples/javascript_typescript/01.console-echo/README.md index 491b9bc88b..51e2e065da 100644 --- a/samples/javascript_typescript/01.console-echo/README.md +++ b/samples/javascript_typescript/01.console-echo/README.md @@ -4,7 +4,7 @@ Bot Framework v4 console bot sample This sample shows how to create a simple echo bot that you can talk to from the console window. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_typescript/02.a.echobot/README.md b/samples/javascript_typescript/02.a.echobot/README.md index a32b8b484d..4f6ddcbbcd 100644 --- a/samples/javascript_typescript/02.a.echobot/README.md +++ b/samples/javascript_typescript/02.a.echobot/README.md @@ -4,7 +4,7 @@ Bot Builder v4 echo bot sample This bot has been created using [Microsoft Bot Framework][1], it shows how to create a simple bot that accepts input from the user and echoes it back. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_typescript/02.b.echobot-with-counter/README.md b/samples/javascript_typescript/02.b.echobot-with-counter/README.md index 054e7bef99..a2c05e6b0c 100644 --- a/samples/javascript_typescript/02.b.echobot-with-counter/README.md +++ b/samples/javascript_typescript/02.b.echobot-with-counter/README.md @@ -4,7 +4,7 @@ Bot Builder v4 echo bot with counter sample This bot has been created using [Microsoft Bot Framework][1], it shows how to maintain state during a conversation. The bot maintains a simple counter that increases with each message from the user. ## Prerequisites -- [Node.js][4] version 8.5 or higher +- [Node.js][4] version 10.14 or higher ```bash # determine node version node --version diff --git a/samples/javascript_typescript/11.qnamaker/PREREQUISITES.md b/samples/javascript_typescript/11.qnamaker/PREREQUISITES.md index b9108fa28f..80c498d6c4 100644 --- a/samples/javascript_typescript/11.qnamaker/PREREQUISITES.md +++ b/samples/javascript_typescript/11.qnamaker/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [QnA Maker Service][1], an AI based cognitive service, to implement a powerful question and answer service from your semi-structured content. The Bot Framework provides a set of CLI tools that will help setup QnA Maker so the bot can be run and tested locally. Additionally, prerequisites are provided that will enable the bot to be deployed to Azure using additional CLI tools. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher. diff --git a/samples/javascript_typescript/12.nlp-with-luis/PREREQUISITES.md b/samples/javascript_typescript/12.nlp-with-luis/PREREQUISITES.md index 1ee333d852..754caa6516 100644 --- a/samples/javascript_typescript/12.nlp-with-luis/PREREQUISITES.md +++ b/samples/javascript_typescript/12.nlp-with-luis/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [LUIS][1], an AI based cognitive service, to implement language understanding. The Bot Framework provides a set of CLI tools that will help setup LUIS so the bot can be run and tested locally. Additionally, prerequisites are provided that will enable the bot to be deployed to Azure using additional CLI tools. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher. diff --git a/samples/javascript_typescript/13.basic-bot/PREREQUISITES.md b/samples/javascript_typescript/13.basic-bot/PREREQUISITES.md index 1ee333d852..754caa6516 100644 --- a/samples/javascript_typescript/13.basic-bot/PREREQUISITES.md +++ b/samples/javascript_typescript/13.basic-bot/PREREQUISITES.md @@ -7,7 +7,7 @@ This document will enumerate the required prerequisites and show how to install This bot uses [LUIS][1], an AI based cognitive service, to implement language understanding. The Bot Framework provides a set of CLI tools that will help setup LUIS so the bot can be run and tested locally. Additionally, prerequisites are provided that will enable the bot to be deployed to Azure using additional CLI tools. ## Prerequisites -- [Node.js][4] version 8.5 or higher. +- [Node.js][4] version 10.14 or higher. - If you don't have an Azure subscription, create a [free account][5]. - Install the latest version of the [Azure CLI][6] tool. Version 2.0.54 or higher. - Install latest version of the `MSBot` CLI tool. Version 4.3.2 or higher.