├── .gitignore ├── .npmignore ├── .travis.yml ├── AUTHORS ├── History.md ├── Makefile ├── README.md ├── index.js ├── lib └── weixin.js ├── package.json ├── test ├── index.js ├── mocha.opts └── support.js └── wechat-api-flow.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | test 3 | lib-cov 4 | examples 5 | doc 6 | coverage.html 7 | Makefile 8 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/AUTHORS -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/index.js -------------------------------------------------------------------------------- /lib/weixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/lib/weixin.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/test/support.js -------------------------------------------------------------------------------- /wechat-api-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-webot/weixin-robot/HEAD/wechat-api-flow.png --------------------------------------------------------------------------------