@joshuaneely/amfjs
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

AMF.js

As a simple AMF (Action Message Format) library for Node.js, AMF.js is capable of encoding and decoding most AMF0 and AMF3 types. Simply hook the AMFEncoder or AMFDecoder up to a stream and it will be able to read or write to/from the stream.

Installation

npm install [--save-dev] amfjs

Usage

  • Encoding
var amfjs = require("amfjs")
var encoder = new amfjs.AMFEncoder(someKindOfWritableStream)
encoder.writeObject(10, amfjs.AMF0) //Write as AMF0
encoder.writeObject(10, amfjs.AMF3) //Write as AMF3
  • Decoding
var amfjs = require("amfjs")
var decoder = new amfjs.AMFDecoder(someKindOfReadableStream)
var value = decoder.decode(amfjs.AMF0) //Decode an AMF0 object
var value = decoder.decode(amfjs.AMF3) //Decode an AMF3 object
  • Encoding custom objects
    Simply extend the Serializable class and call writeObject with an instance of your class. Any fields in the serializable not starting with __ will automatically be encoded:
class MySerializable extends Serializable
  constructor: ->
    super "name.of.the.serializable"
  • Custom Externalizables
    Simply extend the Externalizable class and register it in the decoder to allow for the custom encoding of objects. The write method will be called whenever an Externalizable needs to be encoded and the this value will be set to the encoder. The static read method will be called whenever an object with the Externizable's class is found. As with write, while invoking read the this value is set to the decoder.
class MyExternalizable extends Externalizable
  constructor: ->
    super "name.of.the.externalizable"
  write: ->
    //Do some writing stuff
    @write 0x10
  @read: ->
    //Do some reading stuff and return the read object
    @readByte()
    return new MyExternalizable()
    
//Register the externalizable
var amfjs = require("amfjs")
amfjs.AMFDecoder.register("name.of.the.externalizable", MyExternalizable, amfjs.AMF0) //Or AMF3  

Readme

Keywords

Package Sidebar

Install

npm i @joshuaneely/amfjs

Weekly Downloads

0

Version

2.0.2

License

MIT

Unpacked Size

40.1 kB

Total Files

10

Last publish

Collaborators

  • joshuaneely