# kuvien.js

> A Node module for interfacing with the Kuvien.io API

Latest version **1.0.3** (published 2018-01-31) · ISC license · 0 weekly downloads

## Install

```sh
npm install kuvien.js
pnpm add kuvien.js
yarn add kuvien.js
bun add kuvien.js
```

## 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.3 |
| Published | 2018-01-31 |
| First published | 2018-01-31 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Anidox |
| Maintainers | theanidox |
| Keywords | Kuvien.io |

## Links

- npm: https://www.npmjs.com/package/kuvien.js
- Repository: https://github.com/theanidox/kuvien.js
- Homepage: https://github.com/theanidox/kuvien.js#readme
- Issues: https://github.com/theanidox/kuvien.js/issues
- npm.io page: https://npm.io/package/kuvien.js

## Dependencies (1)

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

## Recent versions

- 1.0.3 (latest) — 2018-01-31
- 1.0.2 — 2018-01-31
- 1.0.1 — 2018-01-31
- 1.0.0 — 2018-01-31

## README

# kuvien.js
A Node module for interfacing with the Kuvien.io API

## Install
```
npm install kuvien.js
```

## Functions
*(For examples, replace `<kjs>` with whatever your variable is)*

**.uploadStream(stream, key, callback)**
Upload a file read stream to Kuvien.io
__**Example**__
```
// Replace file.png with your filename
var s = fs.createReadStream('file.png');

<kjs>.uploadStream(s, 'yourKuvienDomainKey', function(url) {
    console.log(url);
});
```

**.listDomains(callback)**
List all domains on the service
__**Example**__
```
<kjs>.listDomains(function(domains) {
    // The domains variable is an array containing every domain
    console.log(domains);
    console.log(domains[0]);
});
```

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