Fixes 1155: Update node and typescript samples to set min version of nodes (#1250)

- 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
This commit is contained in:
Scott Gellock 2019-02-18 07:10:44 -08:00 коммит произвёл GitHub
Родитель ddb7998820
Коммит 59183b2cde
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
35 изменённых файлов: 35 добавлений и 35 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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.

Просмотреть файл

@ -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.

Просмотреть файл

@ -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.

Просмотреть файл

@ -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.

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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.

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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.

Просмотреть файл

@ -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.

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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.

Просмотреть файл

@ -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.

Просмотреть файл

@ -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.