我正在创建一个新的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
它似乎工作.
角括号不是必需的.