Package Exports
- as-udp
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (as-udp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
As-UDP
UDP bindings for AssemblyScript
Setting up
Add --exportTable and --exportRuntime flags
Edit main file
// main.js
+ let wasmModule
+ const udpImports = require('as-udp')
const imports = {
...eval(udpImports)
}
- const wasmModule = loader.instantaniateSync()
+ wasmModule = loader.instantaniateSync()
Usage
UDP Socket
import { UDPSocket } from 'as-udp'
const socket = new UDPSocket('udp4')
socket.on('message', (data) => {
console.log('Message: ' + data)
})
socket.on('listening', () => {
console.log('Listening')
})
socket.on('error', (err) => {
console.log('Error: ' + err)
})
socket.send('Hello From AssemblyScript!', 3000, 'localhost')