1.0.2 • Published 8 years ago

morpheus-node-lib v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

morpheus-node-lib

A Node.JS library for interacting with the Morpheus API

Installation

npm install morpheus-node-lib

Example

var morpheus = require("morpheus-node-lib"); // we need to include morpheus in our script!

var url = "http://milesbudden.com/morpheus.pdf"; // the URL for the file to convert
var from = "pdf"; // what to convert from
var to = "html"; // what to convert to

morpheus.convert(url, from, to, function(output) { // go convert!
	// when it's done, we log the output
    console.log(output);
});
1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago