{"id":27208091,"url":"https://github.com/hsequeda/example-chat-bot","last_synced_at":"2025-07-30T13:32:44.126Z","repository":{"id":128656945,"uuid":"448995950","full_name":"hsequeda/example-chat-bot","owner":"hsequeda","description":"A chatbot example using microsoft bot framework","archived":false,"fork":false,"pushed_at":"2022-01-17T17:58:07.000Z","size":43,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T23:59:15.051Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hsequeda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-17T17:56:55.000Z","updated_at":"2022-01-17T17:58:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"413a1139-dd05-42e9-be55-d1c12a201d1e","html_url":"https://github.com/hsequeda/example-chat-bot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hsequeda/example-chat-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsequeda%2Fexample-chat-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsequeda%2Fexample-chat-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsequeda%2Fexample-chat-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsequeda%2Fexample-chat-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hsequeda","download_url":"https://codeload.github.com/hsequeda/example-chat-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsequeda%2Fexample-chat-bot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267875440,"owners_count":24158778,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-09T23:59:14.167Z","updated_at":"2025-07-30T13:32:44.102Z","avatar_url":"https://github.com/hsequeda.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# my-chat-bot\n\nDemonstrate the core capabilities of the Microsoft Bot Framework\n\nThis bot has been created using [Bot Framework](https://dev.botframework.com), it shows how to create a simple bot that accepts input from the user and echoes it back.\n\n## Prerequisites\n\n- [Node.js](https://nodejs.org) version 10.14.1 or higher\n\n    ```bash\n    # determine node version\n    node --version\n    ```\n\n## To run the bot\n\n- Install modules\n\n    ```bash\n    npm install\n    ```\n- Start the bot\n\n    ```bash\n    npm start\n    ```\n\n## Testing the bot using Bot Framework Emulator\n\n[Bot Framework Emulator](https://github.com/microsoft/botframework-emulator) is a desktop application that allows bot developers to test and debug their bots on localhost or running remotely through a tunnel.\n\n- Install the Bot Framework Emulator version 4.9.0 or greater from [here](https://github.com/Microsoft/BotFramework-Emulator/releases)\n\n### Connect to the bot using Bot Framework Emulator\n\n- Launch Bot Framework Emulator\n- File -\u003e Open Bot\n- Enter a Bot URL of `http://localhost:3978/api/messages`\n\n## Deploy the bot to Azure\n\n### Publishing Changes to Azure Bot Service\n\n    ```bash\n    # build the TypeScript bot before you publish\n    npm run build\n    ```\n\nTo learn more about deploying a bot to Azure, see [Deploy your bot to Azure](https://aka.ms/azuredeployment) for a complete list of deployment instructions.\n\n## Further reading\n\n- [Bot Framework Documentation](https://docs.botframework.com)\n- [Bot Basics](https://docs.microsoft.com/azure/bot-service/bot-builder-basics?view=azure-bot-service-4.0)\n- [Dialogs](https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-concept-dialog?view=azure-bot-service-4.0)\n- [Gathering Input Using Prompts](https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-prompts?view=azure-bot-service-4.0)\n- [Activity processing](https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-concept-activity-processing?view=azure-bot-service-4.0)\n- [Azure Bot Service Introduction](https://docs.microsoft.com/azure/bot-service/bot-service-overview-introduction?view=azure-bot-service-4.0)\n- [Azure Bot Service Documentation](https://docs.microsoft.com/azure/bot-service/?view=azure-bot-service-4.0)\n- [Azure CLI](https://docs.microsoft.com/cli/azure/?view=azure-cli-latest)\n- [Azure Portal](https://portal.azure.com)\n- [Language Understanding using LUIS](https://docs.microsoft.com/en-us/azure/cognitive-services/luis/)\n- [Channels and Bot Connector Service](https://docs.microsoft.com/en-us/azure/bot-service/bot-concepts?view=azure-bot-service-4.0)\n- [TypeScript](https://www.typescriptlang.org)\n- [Restify](https://www.npmjs.com/package/restify)\n- [dotenv](https://www.npmjs.com/package/dotenv)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhsequeda%2Fexample-chat-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhsequeda%2Fexample-chat-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhsequeda%2Fexample-chat-bot/lists"}