# morpheus-node-lib

> A Node.JS library for interacting with the Morpheus API

Latest version **1.0.2** (published 2016-01-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install morpheus-node-lib
pnpm add morpheus-node-lib
yarn add morpheus-node-lib
bun add morpheus-node-lib
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2016-01-08 |
| First published | 2015-12-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | SubjectRefresh |
| Maintainers | developius |
| Keywords | convert, API, Morpheus |

## Links

- npm: https://www.npmjs.com/package/morpheus-node-lib
- Repository: https://github.com/subjectrefresh/morpheus-node-lib
- Homepage: https://github.com/subjectrefresh/morpheus-node-lib#readme
- Issues: https://github.com/subjectrefresh/morpheus-node-lib/issues
- npm.io page: https://npm.io/package/morpheus-node-lib

## Dependencies (1)

- [request](https://npm.io/package/request.md) ^2.67.0

## Recent versions

- 1.0.2 (latest) — 2016-01-08
- 1.0.1 — 2015-12-22
- 1.0.0 — 2015-12-22

## README

# morpheus-node-lib
A Node.JS library for interacting with the Morpheus API

## Installation
```npm install morpheus-node-lib```

## Example
```javascript
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);
});
```

---
_Source: https://npm.io/package/morpheus-node-lib · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
