使用示例
全局安装(0.4.8以后不推荐)
1 安装依赖
- 注意:
npm install -g onebots
2 初始化配置文件
在你想存放配置文件的目录执行如下命令
onebots
3 更改生成的默认配置文件成你想要的配置配置后再次运行上面的指令,启动项目
局部安装
1 初始化node项目
npm init -y
2. 安装onebots以及对应适配器的依赖
npm install onebots
npm install @icqqjs/icqq # 如需使用icqq适配器,请务必安装
npm install web-wechat # 如需使用微信适配器,请务必安装
npm install qq-official-bot # 如需使用qq官方机器人适配器,请务必安装
npm install node-dd-bot # 如需使用钉钉机器人适配器,请务必安装
- 关于@icqqjs的安装引导:
安装:
- 在你的项目根目录新建文件
.npmrc
,并录入以下内容
@icqqjs:registry=https://npm.pkg.github.com
- 命令行输入
npm login --scope=@icqqjs --auth-type=legacy --registry=https://npm.pkg.github.com
,回车,根据提示登录github
npm login --scope=@icqqjs --auth-type=legacy --registry=https://npm.pkg.github.com
UserName: # 你的github账号
Password: # 前往 https://github.com/settings/tokens/new 获取,scopes勾选 read:packages
E-Mail: # 你的公开邮箱地址
- 安装依赖
npm install @icqqjs/icqq # or > yarn add @icqqjs/icqq