# recognize.im

> Recognize.im API

Latest version **0.9.12** (published 2014-04-11) · 0 weekly downloads

## Install

```sh
npm install recognize.im
pnpm add recognize.im
yarn add recognize.im
bun add recognize.im
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.9.12 |
| Published | 2014-04-11 |
| First published | 2012-10-01 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | * |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | vizjereix |

## Links

- npm: https://www.npmjs.com/package/recognize.im
- Repository: https://github.com/RecognizeIm/node.js-client
- Issues: https://github.com/RecognizeIm/node.js-client/issues
- npm.io page: https://npm.io/package/recognize.im

## Dependencies (3)

- [xml2js](https://npm.io/package/xml2js.md) *
- [imageinfo](https://npm.io/package/imageinfo.md) *
- [formidable](https://npm.io/package/formidable.md) *

## Recent versions

- 0.9.12 (latest) — 2014-04-11
- 0.9.11 — 2014-04-11
- 0.9.10 — 2014-04-11
- 0.9.9 — 2014-04-11
- 0.9.7 — 2014-04-07
- 0.9.6 — 2014-01-08
- 0.9.4 — 2013-02-14
- 0.9.2 — 2012-10-02
- 0.9.1 — 2012-10-01
- 0.9.0 — 2012-10-01

## README

Recognize.im API
===============

Recognize.im is providing API for Image Recognition. Those module is sample connector to the API

Installation
============

Simplest way to install  is to use [npm](http://npmjs.org), just `npm
install recognize.im` which will download module and all dependencies.

Usage
=====

    // first get module object and set credentials
    var API = require("recognize.im");
    API.setCredentials(1, '7b8968c6cf', 'dbf552b9f7f7e3b6918d3f854011f4ff');
    
    // next provide callbacks for success and for error
    API.on("error", function(msg){
        consoloe.log("Recognize.im connection error: " + msg);
    });
    
    API.on('success', function(data) {
        var utils = require('util');
        console.log(utils.inspect(data));
    });
    
    // call API function
    API.indexBuild();

Authorization
=============

You don't need to call method auth by yourself. Module object will authorize you when needed, you just need do provide valid credentials. You can get them from your [account tab](http://recognize.im/user/profile)

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