ndef

v0.1.0
Library to create and parse NDEF messages.
NDEF NFC

Library to create and parse NDEF messages.

ndef = require('ndef');

message = [
    ndef.textRecord("hello, world")
];

bytes = ndef.encodeMessage(message);

// do something useful with bytes: write to a tag or send to a peer
  
records = ndef.decodeMessage(bytes);

ndef.text.decodePayload(records[0].payload);

// prints 'hello, world'
        

See the examples directory and the mifare classic examples for more information on creating and decoding messages.

See the phonegap-nfc documentation for additional info.

Metadata

  • BSD
  • >=0.8
  • Don Coleman
  • released 7/30/2014

Downloads

Maintainers