You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 20, 2024. It is now read-only.
What are you trying to achieve or the steps to reproduce?
The request library should be replaced with a package that is maintained. For Node.js 18+, there's a native fetch that can be used, but for other use cases the node-fetch library is great (or cross-fetch for isomorphic uses). Plus, switching to it makes it easier in the future to switch to the native Node / browser fetch API.
Are you sure this is an issue with the Botkit core module?
In several of the
botkitadapters, there are imports for therequestpackage - it's been deprecated for a few years now.What are you trying to achieve or the steps to reproduce?
The
requestlibrary should be replaced with a package that is maintained. For Node.js 18+, there's a nativefetchthat can be used, but for other use cases thenode-fetchlibrary is great (orcross-fetchfor isomorphic uses). Plus, switching to it makes it easier in the future to switch to the native Node / browserfetchAPI.