# autodraw

> ## Installation

Latest version **0.1.0** (published 2017-04-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install autodraw
pnpm add autodraw
yarn add autodraw
bun add autodraw
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2017-04-15 |
| First published | 2017-04-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+25 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 42 |
| Author | Mathieu Dutour |
| Maintainers | mathieudutour |
| Keywords | autodraw, API |

## Links

- npm: https://www.npmjs.com/package/autodraw
- Repository: https://github.com/mathieudutour/autodraw
- Homepage: https://github.com/mathieudutour/autodraw#readme
- Issues: https://github.com/mathieudutour/autodraw/issues
- npm.io page: https://npm.io/package/autodraw

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^0.16.1

## Recent versions

- 0.1.0 (latest) — 2017-04-15

## README

# Autodraw API wrapper

## Installation

```
npm install --save autodraw
```

## Usage

```js
const autodraw = require('autodraw')

const shape1 = [
  {
    x: 10,
    y: 5
  },
  {
    x: 40,
    y: 10
  }
]

const shapes = [
  shape1
]

autodraw(shapes).then(results => {
  /* array of recognized objects:
   * [{
   *    name,
   *    confidence (closer to 0 == more confident),
   *    url (url to a svg representing the object),
   *    url_variant_1,
   *    url_variant_2
   * }]
   */
})
```

## Licence

MIT

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