amf

0.1.0 • Public • Published

node-amf

"Action Message Format" read() and write() functions for Buffers

Build Status

This module reads and writes AMF (Action Message Format, commonly used with Adobe products) data types with Buffer instances.

Installation

Install through npm:

$ npm install amf

Example

var amf = require('amf');
 
// this is an AMF-encoded Object...
var data = new Buffer('03 00 03 66 6f 6f 02 00 03 62 61 72 00 00 09'.replace(/ /g, ''), 'hex');
 
// read the Object out from the Buffer
var obj = amf.read(data, 0);
 
console.log(obj);
// { foo: 'bar' }

API

Coming soon!

Readme

Keywords

none

Package Sidebar

Install

npm i amf

Weekly Downloads

407

Version

0.1.0

License

MIT

Last publish

Collaborators

  • tootallnate