0.1.1 • Published 11 years ago

aviary v0.1.1

Weekly downloads
23
License
-
Repository
github
Last release
11 years ago

aviary-nodejs

A NodeJS implementation of the Aviary Server-side Render Api.

Installation

To install via npm:

npm install aviary

Usage

Right now the Aviary Render API is limited to Enterprise partners. Please contact partners@aviary.com for more information.

Sample Usage

var Aviary = require('../lib/aviary').Aviary;

var aviary = new Aviary('<apiKey>', '<apiSecret');

var renderConfig = {
	url: '<image url>',
	actionList: '<actionlist'
};

var callback = function(error, url) {
	console.log(url);
}

aviary.renderAndWait(renderConfig, callback);