JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 16
  • Score
    100M100P100Q34676F
  • License MIT

UDP bindings for AssemblyScript

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

+ const udp = require('as-udp')

const imports = {
    ...udp.wasmImports
}

const wasmModule = loader.instantaniateSync()

+ udp.wasmExports = wasmModule.exports

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')