mini.socket.io
v2.0.1
Published
See [Weapp demo](https://github.com/wxsocketio/socket.io-weapp-demo)
Maintainers
Readme
weapp.socket.io
See Weapp demo
Feature
Full feature socket.io style implemented (polling & websocket), based-on [email protected] version
Note: weapp's http request not support binary, so you can't transport binary data use polling. Not support multiple connection for now, please wait next version :)
How to use
Install
npm i weapp.socket.ioor
git clone https://github.com/wxsocketio/weapp.socket.io.gitCompiled
npm run build-dev
npm run buildif you use yarn
yarn build-dev
yarn buildImport yout weapp project
- move your compiled file in your
distdir - require this filr in your code.
example code
code style is same to socket.io-client
const io = require('./yout_path/weapp.socket.io.js')
const socket = io('http://localhost:8000')
socket.on('news', d => {
console.log('received news: ', d)
})
socket.emit('news', {
title: 'this is a news'
})