我正在创建一个新的 Slack botkit 应用程序,但在安装过程中遇到了问题。
Node.js 和 node-dependency 正确安装在我的 Windows 7 系统上。
https://github.com/howdyai/botkit
然后第4步,我运行这个命令
c:\bot\botkit > token=REPLACE_THIS_WITH_YOUR_TOKEN node bot.js
(I replaced with my api key.)
在我的命令提示符中,它说:
'token' is not recognized as an internal or external command, operable program or batch file.
我认为这是Linux或Mac命令,那么您如何在Windows上操作它?
最佳答案
我找到了解决方案:
c:\bot\botkit > set token=REPLACE_THIS_WITH_YOUR_TOKEN
然后:
c:\bot\botkit > node bot.js
它似乎工作。
尖括号不是必需的。
关于node.js - 如何在 Windows 上运行 Slack botkit?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34738209/