https://github.com/afeiship/wxapi-server
Api server for wechat.
https://github.com/afeiship/wxapi-server
api wechat wx wxapi
Last synced: 4 months ago
JSON representation
Api server for wechat.
- Host: GitHub
- URL: https://github.com/afeiship/wxapi-server
- Owner: afeiship
- Created: 2016-09-08T10:12:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-08-14T01:15:52.000Z (about 2 years ago)
- Last Synced: 2025-02-07T12:29:36.923Z (8 months ago)
- Topics: api, wechat, wx, wxapi
- Language: TypeScript
- Homepage:
- Size: 160 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wxapi-server
> Api server for wechat.## get-started
```shell
# clone
git clone git@github.com:afeiship/wxapi-server.git# install
cd wxapi-server
yarn
yarn build# run with pm2
pm2 start wxapi
```## nginx
> proxy to this api.```conf
location /wxapi {
proxy_pass http://127.0.0.1:3300;
# rewrite ^/wxapi/(.*) /$1 break;
}
```