Wechaty [![NPM Version](https://img.shields.io/npm/v/wechaty?color=brightgreen)](https://www.npmjs.com/package/wechaty) [![NPM](https://github.com/wechaty/wechaty/workflows/NPM/badge.svg)](https://github.com/wechaty/wechaty/actions?query=workflow%3ANPM) [![Docker](https://github.com/wechaty/wechaty/workflows/Docker/badge.svg)](https://github.com/wechaty/wechaty/actions?query=workflow%3ADocker) [![Wechaty](https://wechaty.js.org/img/wechaty-logo.svg)](https://wechaty.js.org) [![Downloads](https://img.shields.io/npm/dm/wechaty.svg?style=flat-square)](https://www.npmjs.com/package/wechaty) [![GitHub stars](https://img.shields.io/github/stars/wechaty/wechaty.svg?label=github%20stars)](https://github.com/wechaty/wechaty) [![Docker Pulls](https://img.shields.io/docker/pulls/wechaty/wechaty.svg?maxAge=2592000)](https://hub.docker.com/r/wechaty/wechaty/) [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-blue.svg)](https://www.typescriptlang.org/) [![Gitter](https://badges.gitter.im/wechaty/wechaty.svg)](https://gitter.im/wechaty/wechaty?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) [![Telegram Wechaty Channel](https://img.shields.io/badge/chat-on%20telegram-blue)](https://t.me/wechaty) ## :hearts: Connecting Chatbots Wechaty is a Conversational SDK for Chatbot Makers which can help you create a bot in 6 lines of [JavaScript](https://GitHub.com/Wechaty/wechaty), [Python](https://GitHub.com/Wechaty/python-wechaty/), [Go](https://GitHub.com/Wechaty/go-wechaty/), and [Java](https://GitHub.com/Wechaty/java-wechaty/), with cross-platform support including [Linux, Windows, MacOS](https://github.com/wechaty/wechaty/actions?query=workflow%3ANPM), and [Docker](https://github.com/wechaty/wechaty/actions?query=workflow%3ADocker). :octocat: :beetle: :book: :whale: ## :yum: Voice of Developers > "Wechaty is a great solution, I believe there would be much more users recognize it." [link](https://github.com/Wechaty/wechaty/pull/310#issuecomment-285574472) > — @Gcaufy, Tencent Engineer, Author of [WePY](https://github.com/Tencent/wepy) > > "太好用,好用的想哭" > — @xinbenlv, Google Engineer, Founder of HaoShiYou.org > > "最好的微信开发库" [link](http://weibo.com/3296245513/Ec4iNp9Ld?type=comment) > — @Jarvis, Baidu Engineer > > "Wechaty让运营人员更多的时间思考如何进行活动策划、留存用户,商业变现" [link](http://mp.weixin.qq.com/s/dWHAj8XtiKG-1fIS5Og79g) > — @lijiarui, Founder & CEO of Juzi.BOT. > > "If you know js ... try Wechaty, it's easy to use." > — @Urinx Uri Lee, Author of [WeixinBot(Python)](https://github.com/Urinx/WeixinBot) > > "Wechaty is a good project, I hope it can continue! Therefore, I became a contributors in open collective." > — [@Simple](https://github.com/mrwhh) See more at [Wiki:Voice Of Developer](https://github.com/Wechaty/wechaty/wiki/Voice%20Of%20Developer) ### :raising_hand: Join Us Wechaty is used in many ChatBot projects by thousands of developers. If you want to talk with other developers, just scan the following QR Code in WeChat with secret code _wechaty_, join our **Wechaty Developers' Home**. ![Wechaty Friday.BOT QR Code](https://wechaty.js.org/img/friday-qrcode.svg) Scan now, because other Wechaty developers want to talk with you too! (secret code: _wechaty_) ### :book: Resource Wechaty already held lots of talk and got a lot of blogs in the past 4 years, here is all of the wechaty resources: - :video_camera: [Youtube Playlist: Watch all of talk video related with Wechaty](https://www.youtube.com/playlist?list=PL8hd9KDTdarDXf_Rxtr8meKhxtgcXMInh) - :page_with_curl: [Full Docs](https://wechaty.js.org/) - :bulb: [Blog: See how developers use wechaty building fantastic project!](https://wechaty.github.io/) - :beginner: [Wechaty-Getting-Started:Wechaty Starter Project Template that Works Out-of-the-Box](https://github.com/wechaty/wechaty-getting-started) - :tada: [Wechaty Contributor List: Thanks for their contribution!](https://github.com/wechaty/wechaty/wiki/Contributors) - :gift: [Juzibot Support Wechaty: Know everything about Wechaty](https://github.com/juzibot/Welcome/wiki/Everything-about-Wechaty) ## :rocket: The World's Shortest ChatBot Code: 6 lines of JavaScript ```javascript const { Wechaty } = require('wechaty') // import { Wechaty } from 'wechaty' Wechaty.instance() // Global Instance .on('scan', (qrcode, status) => console.log(`Scan QR Code to login: ${status}\nhttps://wechaty.js.org/qrcode/${encodeURIComponent(qrcode)}`)) .on('login', user => console.log(`User ${user} logged in`)) .on('message', message => console.log(`Message: ${message}`)) .start() ``` > **Notice: Wechaty requires Node.js version >= 12** This bot can log all messages to the console after login by scan. You can find Wechaty Official Example at [examples/ding-dong-bot.ts](examples/ding-dong-bot.ts), and more from our [Example Directory](https://github.com/Wechaty/wechaty-getting-started/blob/master/examples/). ## :checkered_flag: Requirements 1. Node.js v12 1. `sudo apt-get install build-essential && sudo snap install shellcheck` ## :triangular_flag_on_post: Getting Started [![node](https://img.shields.io/node/v/wechaty.svg?maxAge=604800)](https://nodejs.org/) - Wechaty Starter Repository - We have a Wechaty starter repository for beginners with the simplest setting. It will be **just work** out-of-the-box after you `clone` & `npm install` & `npm start`. If you are new to Wechaty and want to try it the first time, we'd like to strong recommend you starting from this repository, and using it as your starter template for your project. Otherwise, please saved the above _The World's Shortest ChatBot Code: 6 lines of JavaScript_ example to a file named `bot.js` before you can use either NPM or Docker to run it. ### 1. Npm [![NPM Version](https://img.shields.io/npm/v/wechaty?color=brightgreen&label=wechaty%40latest)](https://www.npmjs.com/package/wechaty) [![npm (tag)](https://img.shields.io/npm/v/wechaty/next?color=yellow&label=wechaty%40next)](https://www.npmjs.com/package/wechaty?activeTab=versions) [![Downloads](https://img.shields.io/npm/dm/wechaty.svg?style=flat-square)](https://www.npmjs.com/package/wechaty) [![install size](https://packagephobia.now.sh/badge?p=wechaty)](https://packagephobia.now.sh/result?p=wechaty) ```shell npm init npm install wechaty # create your first bot.js file, you can copy/paste from the above "The World's Shortest ChatBot Code: 6 lines of JavaScript" # then: node bot.js ``` ### 2. Docker [![Docker Pulls](https://img.shields.io/docker/pulls/wechaty/wechaty.svg?maxAge=2592000)](https://hub.docker.com/r/wechaty/wechaty/) [![Docker Layers](https://images.microbadger.com/badges/image/wechaty/wechaty.svg)](https://microbadger.com/#/images/wechaty/wechaty) - Wechaty Starter Repository for Docker - > Wechaty Docker supports both JavaScript and TypeScript. To use TypeScript just write in TypeScript and save with extension name `.ts`, no need to compile because we use `ts-node` to run it. 2.1. Run JavaScript ```shell # for JavaScript docker run -ti --rm --volume="$(pwd)":/bot wechaty/wechaty bot.js ``` 2.2. Run TypeScript ```shell # for TypeScript docker run -ti --rm --volume="$(pwd)":/bot wechaty/wechaty bot.ts ``` > Learn more about Wechaty Docker at [Wiki:Docker](https://github.com/Wechaty/wechaty/wiki/Docker). ### 3. Switch Protocol(Puppet) Wechaty is very powerful that it can run over different protocols. You can specify the protocol by set the environment variable `WECHATY_PUPPET` to different puppet provider. If you cannot use Web protocol, you can apply other protocal following the instruction here: We provide free token to support developers build a valuable WeChat chatbot. Currently we support the following puppet providers: | Protocol | Puppet Provider | Environment Variable | | --- | --- | --- | | Web | PuppetPuppeteer | `export WECHATY_PUPPET=wechaty-puppet-puppeteer` | | iPad | PuppetPadplus | `export WECHATY_PUPPET=wechaty-puppet-padplus` | | Mac | PuppetMacpro | `export WECHATY_PUPPET=wechaty-puppet-macpro` | | Mock | PuppetMock | `export WECHATY_PUPPET=wechaty-puppet-mock` | | Web | PuppetWechat4u | `export WECHATY_PUPPET=wechaty-puppet-wechat4u` | | iPad | PuppetPadpro **DEPRECATED** | `export WECHATY_PUPPET=wechaty-puppet-padpro` | | iPad | PuppetPadchat **DEPRECATED** | `export WECHATY_PUPPET=wechaty-puppet-padchat` | Learn more about Wechaty Puppet from the Puppet Wiki: 1. Puppet Directory: 1. Puppet Compatibility: ## :guitar: API Read the Full Documentation at [Wechaty Official API Reference](https://wechaty.github.io/wechaty/) ### 1 Class `Wechaty` Main bot class. A `Bot` is a Wechaty instance that control a specific [wechaty-puppet](https://github.com/Wechaty/wechaty/wiki/Puppet). - `new Wechaty(options?: WechatyOptions)` 1. `options.name?: string` the name of this bot(optional) 2. `options.puppet?: string` select which puppet provider we want to use. must be one of the: 1. [wechaty-puppet-puppeteer](https://github.com/Wechaty/wechaty-puppet-puppeteer) - Angular Hook for Web Wechat <- This is the DEFAULT 2. [wechaty-puppet-wechat4u](https://github.com/Wechaty/wechaty-puppet-wechat4u) - HTTP API for Web Wechat 3. [wechaty-puppet-padpro](https://github.com/botorange/wechaty-puppet-padpro) - iPad App Protocol 4. [wechaty-puppet-ioscat](https://github.com/linyimin-bupt/wechaty-puppet-ioscat) - iPhone App Hook 5. [wechaty-puppet-mock](https://github.com/Wechaty/wechaty-puppet-mock) - Mock for Testing 3. `options.puppetOptions?: PuppetOptions` options for the puppet provider. | Wechaty | API | Description | | :--- | :--- | :--- | | event | [`login`](https://wechaty.github.io/wechaty/#Wechaty+on) | emit after bot login full successful | | event | [`logout`](https://wechaty.github.io/wechaty/#Wechaty+on) | emit after the bot log out | | event | [`friendship`](https://wechaty.github.io/wechaty/#Wechaty+on) | emit when someone sends bot a friend request| | event | [`message`](https://wechaty.github.io/wechaty/#Wechaty+on) | emit when there's a new message | | event | [`room-join`](https://wechaty.github.io/wechaty/#Wechaty+on) | emit when anyone join any room | | event | [`room-topic`](https://wechaty.github.io/wechaty/#Wechaty+on) | emit when someone change room topic | | event | [`room-leave`](https://wechaty.github.io/wechaty/#Wechaty+on) | emit when anyone leave the room | | event | [`room-invite`](https://wechaty.github.io/wechaty/#Wechaty+on) | emit when there is a room invitation | | event | [`scan`](https://wechaty.github.io/wechaty/#Wechaty+on) | emit when the bot needs to show you a QR Code for scanning | | method | [`start(): Promise`](https://wechaty.github.io/wechaty/#Wechaty+start) | start the bot | | method | [`stop(): Promise`](https://wechaty.github.io/wechaty/#Wechaty+stop) | stop the bot | | method | [`logonoff(): boolean`](https://wechaty.github.io/wechaty/#Wechaty+logonoff) | bot login status | | method | [`logout(): Promise`](https://wechaty.github.io/wechaty/#Wechaty+logout) | logout the bot | | method | [`userSelf(): ContactSelf`](https://wechaty.github.io/wechaty/#Wechaty+userSelf) | get the login-ed bot contact | | method | [`say(text: string): Promise`](https://wechaty.github.io/wechaty/#Wechaty+say) | let bot say `text` to itself | ### 2 Class `Contact` All wechat contacts(friends/non-friends) will be encapsulated as a Contact. | Contact | API | Description | | :--- | :--- | :--- | | static | [`find(query: string): Promise`](https://wechaty.github.io/wechaty/#Contact.find) | find contact by name or alias, if the result more than one, return the first one. | | static | [`findAll(query: string): Promise`](https://wechaty.github.io/wechaty/#Contact.findAll) | find contact by `name` or `alias` | | static | [`load(query: string): Contact`](https://wechaty.github.io/wechaty/#Contact.load) | get contact by id | | property | `id: readonly string` | get contact id | | method | [`sync(): Promise`](https://wechaty.github.io/wechaty/#Contact+sync) | force reload data for contact , sync data from lowlevel API again| | method | [`say(text: string): Promise`](https://wechaty.github.io/wechaty/#Contact+say) | send text, Contact, or file to contact, return the message which the bot sent (only `puppet-padplus` supported). | | method | [`self(): boolean`](https://wechaty.github.io/wechaty/#Contact+self) | check if contact is self | | method | [`name(): string`](https://wechaty.github.io/wechaty/#Contact+name) | get the name from a contact | | method | [`alias(): Promise`](https://wechaty.github.io/wechaty/#Contact+alias) | get the alias for a contact | | method | [`alias(newAlias: string): Promise`](https://wechaty.github.io/wechaty/#Contact+alias) | set or delete the alias for a contact | | method | [`friend(): boolean`](https://wechaty.github.io/wechaty/#Contact+friend) | check if contact is friend | | method | [`type(): ContactType`](https://wechaty.github.io/wechaty/#Contact+type) | return the type of the Contact | | method | [`province(): string`](https://wechaty.github.io/wechaty/#Contact+province) | get the region 'province' from a contact | | method | [`city(): string`](https://wechaty.github.io/wechaty/#Contact+city) | get the region 'city' from a contact | | method | [`avatar(): Promise`](https://wechaty.github.io/wechaty/#Contact+avatar) | get avatar picture file stream | | method | [`gender(): ContactGender`](https://wechaty.github.io/wechaty/#Contact+gender) | get gender from a contact | #### 2.1 Class `ContactSelf` Class `ContactSelf` is extended from `Contact`. | ContactSelf | API | Description | | :--- | :--- | :--- | | method | [`avatar(file: FileBox): Promise`](https://wechaty.github.io/wechaty/#ContactSelf+avatar) | set avatar for bot | | method | [`qrcode(): Promise`](https://wechaty.github.io/wechaty/#ContactSelf+qrcode) | get qrcode for bot | | method | [`signature(text: string): Promise`](https://wechaty.github.io/wechaty/#ContactSelf+signature) | set signature for bot | #### 2.2 Class `Friendship` Send, receive friend request, and friend confirmation events. | Friendship | API | Description | | :--- | :--- | :--- | | static | [`add(contact: Contact, hello?: string): Promise`](https://wechaty.github.io/wechaty/#Friendship.add) | send a friend invitation to contact | | method | [`accept(): Promise`](https://wechaty.github.io/wechaty/#Friendship+accept) | accept Friend Request | | method | [`hello(): string`](https://wechaty.github.io/wechaty/#Friendship+hello) | get the hello string from a friendship invitation | | method | [`contact(): Contact`](https://wechaty.github.io/wechaty/#Friendship+contact) | get the contact from friendship | | method | [`type(): FriendshipType`](https://wechaty.github.io/wechaty/#Friendship+type) | return the Friendship Type(unknown, confirm, receive, verify) | ### 3 Class `Message` All wechat messages will be encapsulated as a Message. | Message | API | Description | | :--- | :--- | :--- | | static | [`find(query: string): Promise`](https://wechaty.github.io/wechaty/#Message.find) | find message in cache and return the first one | | static | [`findAll(query: string): Promise`](https://wechaty.github.io/wechaty/#Message.findAll) | find messages in cache, return a message list | | method | [`from(): Contact`](https://wechaty.github.io/wechaty/#Message+from) | get the sender from a message | | method | [`to(): Contact`](https://wechaty.github.io/wechaty/#Message+to) | get the destination of the message | | method | [`room(): null \| Room`](https://wechaty.github.io/wechaty/#Message+room) | get the room from the message.(If the message is not in a room, then will return `null`) | | method | [`text(): string`](https://wechaty.github.io/wechaty/#Message+text) | get the text content of the message | | method | [`say(text: string): Promise`](https://wechaty.github.io/wechaty/#Message+say) | reply a Text, Media File , or contact message to the sender, return the message which the bot sent (only `puppet-padplus` supported). | | method | [`type(): MessageType`](https://wechaty.github.io/wechaty/#Message+type) | get the type from the message | | method | [`self(): boolean`](https://wechaty.github.io/wechaty/#Message+self) | check if a message is sent by self | | method | [`mention(): Contact[]`](https://wechaty.github.io/wechaty/#Message+mention) | get message mentioned contactList. | | method | [`mentionSelf(): boolean`](https://wechaty.github.io/wechaty/#Message+mentionSelf) | check if a message is mention self | | method | [`forward(to: Contact): Promise`](https://wechaty.github.io/wechaty/#Message+forward) | Forward the received message | | method | [`age(): number`](https://wechaty.github.io/wechaty/#Message+age) | the number of seconds since it has been created | | method | [`date(): Date`](https://wechaty.github.io/wechaty/#Message+date) | the time it was created | | method | [`toFileBox(): Promise`](https://wechaty.github.io/wechaty/#Message+toFileBox) | extract the Media File from the Message, and put it into the FileBox. | | method | [`toContact(): Promise`](https://wechaty.github.io/wechaty/#Message+toContact) | get Share Card of the Message | ### 4 Class `Room` All wechat rooms(groups) will be encapsulated as a Room. | Room | API | Description | | :--- | :--- | :--- | | static | [`create(contactList: Contact[], topic?: string): Promise`](https://wechaty.github.io/wechaty/#Room.create) | create a new room | | static | [`find(query: string): Promise`](https://wechaty.github.io/wechaty/#Room.find) | Try to find a room by filter. If get many, return the first one. | | static | [`findAll(query: string): Promise`](https://wechaty.github.io/wechaty/#Room.findAll) | Find all contacts in a room | | static | [`load(query: string): Room`](https://wechaty.github.io/wechaty/#Room.load) | load room by room id | | property | `id: readonly string` | | | event | [`join`](https://wechaty.github.io/wechaty/#Room+on) | emit when anyone join any room | | event | [`topic`](https://wechaty.github.io/wechaty/#Room+on) | emit when someone change room topic | | event | [`leave`](https://wechaty.github.io/wechaty/#Room+on) | emit when anyone leave the room | | event | [`invite`](https://wechaty.github.io/wechaty/#Room+on) | emit when receive a room invitation | | method | [`sync(): `](https://wechaty.github.io/wechaty/#Room+sync) | force reload data for room, sync data from lowlevel API again. | method | [`say(text: string): Promise`](https://wechaty.github.io/wechaty/#Room+say) | Send text,media file, contact card, or text with mention @mention contact inside Room, return the message which the bot sent (only `puppet-padplus` supported). | | method | [`add(contact: Contact): Promise`](https://wechaty.github.io/wechaty/#Room+add) | Add contact in a room | | method | [`del(contact: Contact): Promise`](https://wechaty.github.io/wechaty/#Room+del) | Delete a contact from the room | | method | [`quit(): Promise`](https://wechaty.github.io/wechaty/#Room+quit) | Bot quit the room itself | | method | [`topic(): Promise`](https://wechaty.github.io/wechaty/#Room+topic) | GET topic from the room | | method | [`topic(newTopic: string): Promise`](https://wechaty.github.io/wechaty/#Room+topic) | SET topic from the room | | method | [`announce(text: string): Promise`](https://wechaty.github.io/wechaty/#Room+announce) | SET/GET announce from the room | | method | [`qrcode(): Promise`](https://wechaty.github.io/wechaty/#Room+qrcode) | Get QR Code of the Room from the room, which can be used as scan and join the room. | | method | [`alias(contact: Contact): Promise`](https://wechaty.github.io/wechaty/#Room+alias) | Return contact's roomAlias in the room | | method | [`roomAlias(contact: Contact): Promise`](https://wechaty.github.io/wechaty/#Room+roomAlias) | Same as function alias | | method | [`has(contact: Contact): Promise`](https://wechaty.github.io/wechaty/#Room+has) | Check if the room has member `contact` | | method | [`memberAll(query?: string): Promise`](https://wechaty.github.io/wechaty/#Room+memberAll) | Find all contacts or with specific name in a room | | method | [`member(query: string): Promise`](https://wechaty.github.io/wechaty/#Room+member) | Find all contacts in a room, if get many, return the first one. | | method | [`memberList():Promise`](https://wechaty.github.io/wechaty/#Room+memberList) | get all room member from the room | | method | [`owner(): null \| Contact`](https://wechaty.github.io/wechaty/#Room+owner) | Get room's owner from the room. | #### 4.1 Class `RoomInvitation` Accept room invitation | RoomInvitation | API | Description | | :--- | :--- | :--- | | method | [`accept(): Promise`](https://wechaty.github.io/wechaty/#RoomInvitation+accept) | accept Room Invitation | | method | [`inviter(): Contact`](https://wechaty.github.io/wechaty/#RoomInvitation+inviter) | get the inviter from room invitation | | method | [`roomTopic(): Promise`](https://wechaty.github.io/wechaty/#RoomInvitation+inviter) | get the room topic from room invitation | | method | [`date(): Promise`](https://wechaty.github.io/wechaty/#RoomInvitation+date) | the time it was created | | method | [`age(): Promise`](https://wechaty.github.io/wechaty/#RoomInvitation+age) | the number of seconds since it has been created | ## :eyeglasses: TEST [![NPM](https://github.com/wechaty/wechaty/workflows/NPM/badge.svg)](https://github.com/wechaty/wechaty/actions?query=workflow%3ANPM) [![Docker](https://github.com/wechaty/wechaty/workflows/Docker/badge.svg)](https://github.com/wechaty/wechaty/actions?query=workflow%3ADocker) [![Coverage Status](https://coveralls.io/repos/github/Wechaty/wechaty/badge.svg?branch=master)](https://coveralls.io/github/Wechaty/wechaty?branch=master) [![Known Vulnerabilities](https://snyk.io/test/github/Wechaty/wechaty/badge.svg)](https://snyk.io/test/github/Wechaty/wechaty) Wechaty is fully automatically tested by unit and integration tests, with Continious Integration & Continious Deliver(CI/CD) support powered by CI like Travis, Shippable and Appveyor. To test Wechaty, run: ```shell npm test ``` Get to know more about the tests from [Wiki:Tests](https://github.com/Wechaty/wechaty/wiki/Tests) ## CREATING WECHATY PLUGIN Creating and publishing a Wechaty Plugin is simple. Simply expose your module as a function that takes 1 parameter: wechaty. When your plugin is imported by Wechaty, it will pass itself in as the argument, and so you are free to add any configuration that Wechaty supports. ```ts import { WechatyPlugin } from 'wechaty' export default const MyPlugin: WechatyPlugin = (wechaty: Wechaty) => { // ... } ``` The `config` exist so the user can pass in customizations to your Plugin. In documenting your Wechaty Plugin, you would lay out your supported config for the user. See: 1. [Wechaty Plugin Support with KickOut Example #1939](https://github.com/wechaty/wechaty/issues/1939) 1. [Wechaty Plugins Contrib](https://github.com/wechaty/wechaty-plugin-contrib) ## :pencil: RELEASE NOTES - [Latest Release](https://github.com/Wechaty/wechaty/releases/latest)(All releases [here](https://github.com/Wechaty/wechaty/releases)) - [Changelog](https://github.com/Wechaty/wechaty/blob/master/CHANGELOG.md) ### :saxophone: Views Since Feb 15, 2019 [![HitCount](http://hits.dwyl.io/wechaty/wechaty.svg)](http://hits.dwyl.io/wechaty/wechaty) ## :sparkling_heart: POWERED BY WECHATY [![Powered by Wechaty](https://img.shields.io/badge/Powered%20By-Wechaty-brightgreen.svg)](https://wechaty.js.org) ### :sparkles: Wechaty Badge ```markdown [![Powered by Wechaty](https://img.shields.io/badge/Powered%20By-Wechaty-brightgreen.svg)](https://wechaty.js.org) ``` Get more embed html/markdown code from [Wiki:Badge](https://github.com/wechaty/wechaty/wiki/Badge) ### :star2: Projects Using Wechaty 1. [一个用CNN深度神经网络给图片评分的wechaty项目](https://github.com/huyingxi/wechaty_selfie) 2. [Relay between Telegram and WeChat](https://github.com/Firaenix/TeleChatRelay) 3. [A chat bot managing the HaoShiYou wechat groups run by volunteers of haoshiyou.org](https://github.com/xinbenlv/haoshiyou-bot) 4. [An interactive chat bot to manage a TODO list](https://github.com/coderbunker/candobot) 5. [Forward WeChat messages to telegram](https://github.com/luosheng/Wegram) 6. [koa与wechaty实现的微信小助手,可定时提醒与发消息设定定时任务](https://github.com/gengchen528/wechat-assistant) 7. [Wechaty Pay - 让线上没有难做的生意](https://github.com/coderwhocode/wechaty-pay) 8. [开源社的微信机器人项目](https://github.com/kaiyuanshe/wechat-robot) Pull Request is welcome to add yours! Learn more about Projects Using Wechaty at [Wiki:Projects Using Wechaty](https://github.com/wechaty/wechaty/wiki/Projects-Using-Wechaty) ## :innocent: Find a Good Server The best practice for running Wechaty Docker/NPM is using a VPS(Virtual Private Server) outside of China, which can save you hours of time because `npm install` and `docker pull` will run smoothly without any problem. The following VPS providers are used by the Wechaty team, and they worked perfectly in production. You can use the following link to get one in minutes. Also, doing this can support Wechaty because you are referred by us. | Location | Price | Ram | Payment | Provider | | --- | --- | --- | --- | --- | | Singapore | $5 | 512MB | Paypal | [DigitalOcean](https://m.do.co/c/01a54778df5c) | | Japan | $5 | 1GB | Paypal | [Linode](https://www.linode.com/?r=5fd2b713d711746bb5451111df0f2b6d863e9f63) | | Korea | $10 | 1GB | Alipay, Paypal | [Netdedi](https://www.netdedi.com/?affid=35) | | Singapore | $3.5 | 512MB | Alipay, Wechat | [Vultr](https://www.vultr.com/?ref=6986613) | ## :notes: See Also - [RelatedProject](https://github.com/Wechaty/wechaty/wiki/RelatedProject) ## :poop: The Story In 2017 ... Huan's daily life/work depends on too much chat on wechat. - Almost 14,000 wechat friends in May 2014, before wechat restricts a total number of friends to 5,000. - Almost 400 wechat rooms, and most of them have more than 400 members. Can you imagine that? He was dying... So a tireless bot working for me 24x7 on wechat, monitoring/filtering the most important message is badly needed. For example, it highlights discussion which contains the KEYWORDS which he want to follow up(especially in a noisy room). ;-) At last, It's built for huan's personal study purpose of Automatically Testing. ## Stargazers over time [![Stargazers over time](https://starchart.cc/wechaty/wechaty.svg)](https://starchart.cc/wechaty/wechaty) ## :two_hearts: Contributors [![GitHub issues](https://img.shields.io/github/issues/wechaty/wechaty.svg)](https://github.com/Wechaty/wechaty/issues) [![GitHub pull requests](https://img.shields.io/github/issues-pr/wechaty/wechaty.svg)](https://github.com/Wechaty/wechaty/pulls) [![Open Collective Backers](https://opencollective.com/wechaty/backer/badge.svg?label=open%20collective%20backers&color=blue)](https://opencollective.com/wechaty/) [![Open Collective Sponsors](https://opencollective.com/wechaty/sponsors/badge.svg?label=open%20collective%20sponsors&color=blue)](https://opencollective.com/wechaty/) [![contributor](https://sourcerer.io/fame/huan/wechaty/wechaty/images/0)](https://sourcerer.io/fame/huan/wechaty/wechaty/links/0) [![contributor](https://sourcerer.io/fame/huan/wechaty/wechaty/images/1)](https://sourcerer.io/fame/huan/wechaty/wechaty/links/1) [![contributor](https://sourcerer.io/fame/huan/wechaty/wechaty/images/2)](https://sourcerer.io/fame/huan/wechaty/wechaty/links/2) [![contributor](https://sourcerer.io/fame/huan/wechaty/wechaty/images/3)](https://sourcerer.io/fame/huan/wechaty/wechaty/links/3) [![contributor](https://sourcerer.io/fame/huan/wechaty/wechaty/images/4)](https://sourcerer.io/fame/huan/wechaty/wechaty/links/4) [![contributor](https://sourcerer.io/fame/huan/wechaty/wechaty/images/5)](https://sourcerer.io/fame/huan/wechaty/wechaty/links/5) [![contributor](https://sourcerer.io/fame/huan/wechaty/wechaty/images/6)](https://sourcerer.io/fame/huan/wechaty/wechaty/links/6) [![contributor](https://sourcerer.io/fame/huan/wechaty/wechaty/images/7)](https://sourcerer.io/fame/huan/wechaty/wechaty/links/7) This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. ----- [![Contribute](https://opencollective.com/wechaty/contributors.svg?width=890&button=false)](https://github.com/Wechaty/wechaty/graphs/contributors) ## :sunglasses: Backers [![Backers on Open Collective](https://opencollective.com/wechaty/backers/badge.svg)](#backers) Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/wechaty#backer)] [![Open Collective Wechaty](https://opencollective.com/wechaty/backers.svg?width=890)](https://opencollective.com/wechaty#backers) ## :smirk: Sponsors [![Sponsors on Open Collective](https://opencollective.com/wechaty/sponsors/badge.svg)](#sponsors) Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/wechaty#sponsor)] [![Wechaty Sponsor](https://opencollective.com/wechaty/sponsor.svg?width=890)](https://opencollective.com/wechaty/#sponsor) ## :point_down: Multi-language Wechaty [![Python Wechaty](https://img.shields.io/badge/Wechaty-Python-blue)](https://github.com/wechaty/python-wechaty) [![Go Wechaty](https://img.shields.io/badge/Wechaty-Go-7de)](https://github.com/wechaty/go-wechaty) [![Java(Kotlin) Wechaty](https://img.shields.io/badge/Wechaty-Java-f80)](https://github.com/wechaty/java-wechaty) [![Scala Wechaty](https://img.shields.io/badge/Wechaty-Scala-890)](https://github.com/wechaty/scala-wechaty) [![PHP Wechaty](https://img.shields.io/badge/Wechaty-PHP-99c)](https://github.com/wechaty/php-wechaty) [![.NET(C#) Wechatyin](https://img.shields.io/badge/Wechaty-.NET-629)](https://github.com/wechaty/dotnet-wechaty) - [Wechaty](https://github.com/wechaty/wechaty) - Conversatioanl SDK for Chatot Makers (TypeScript) - [Python Wechaty](https://github.com/wechaty/python-wechaty) - Conversational SDK for Chatbot Makers written in Python - [Go Wechaty](https://github.com/wechaty/go-wechaty) - Conversational SDK for Chatbot Makers written in Go - [Java Wechaty](https://github.com/wechaty/java-wechaty) - Conversational SDK for Chatbot Makers written in Java(Kotlin) - [Scala Wechaty](https://github.com/wechaty/scala-wechaty) - Conversational SDK for Chatbot Makers written in Scala - [PHP Wechaty](https://github.com/wechaty/php-wechaty) - Conversational SDK for Chatbot Makers written in PHP - [.Net(C#) Wechaty](https://github.com/wechaty/dotnet-wechaty) - Conversational SDK for Chatbot Makers written in .NET(C#) ## :raised_hands: Creators 1. [Huan](https://github.com/huan) [(李卓桓)](http://linkedin.com/in/zixia), Tencent TVP of Chatbot 1. [Rui (李佳芮)](https://pre-angel.com/peoples/jiarui-li/), Microsoft AI MVP [![Profile of Huan LI (李卓桓) on StackOverflow](https://stackoverflow.com/users/flair/1123955.png)](https://stackoverflow.com/users/1123955/huan) ## Cite Wechaty To cite this project in publications: ```bibtex @misc{wechaty, author = {Huan LI, Jiarui LI}, title = {Wechaty: Conversational SDK for Chatbot Makers}, year = {2016}, publisher = {GitHub}, journal = {GitHub Repository}, howpublished = {\url{https://github.com/wechaty/wechaty}}, } ``` ## :email: Copyright & License - Code & Docs © 2016-now Huan, Rui, and Wechaty Community Contributors - Code released under the Apache-2.0 License - Docs released under Creative Commons