Skip to content

SubjectRefresh/morpheus-node-lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
});

About

A Node.JS library for interacting with the Morpheus API

Resources

License

Stars

Watchers

Forks

Packages

No packages published