- From: James M Snell <jasnell@gmail.com>
- Date: Sun, 18 Jan 2015 09:49:52 -0800
- To: "public-socialweb@w3.org" <public-socialweb@w3.org>
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