AS2 node implementation

An implementation of the AS2 Vocabulary for Node.js. This is still
very experimental and early.

https://www.npmjs.com/package/activitystrea.ms

npm install activitystrea.ms

var as = require('activitystrea.ms');

var post = as.post().
  actor(as.person().displayName('sally')).
  object(as.note().content('this is a note')).
  get().
  prettyWrite(function(err,doc) {
    console.log(doc);
  });

Received on Sunday, 18 January 2015 17:50:39 UTC