# loopback-connector-orientdb

> Orientdb connector for loopback

Latest version **1.0.1** (published 2015-07-07) · ISC license · 0 weekly downloads

## Install

```sh
npm install loopback-connector-orientdb
pnpm add loopback-connector-orientdb
yarn add loopback-connector-orientdb
bun add loopback-connector-orientdb
```

## 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.1 |
| Published | 2015-07-07 |
| First published | 2015-03-26 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 6 |
| Known vulnerabilities | 0 (+6 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Mat Taylor |
| Maintainers | mat.taylor |
| Keywords | loopback, orientdb |

## Links

- npm: https://www.npmjs.com/package/loopback-connector-orientdb
- Repository: https://github.com/mattaylor/loopback-connector-orientdb
- Issues: https://github.com/mattaylor/loopback-connector-orientdb/issues
- npm.io page: https://npm.io/package/loopback-connector-orientdb

## Dependencies (6)

- [async](https://npm.io/package/async.md) ^0.9.0
- [debug](https://npm.io/package/debug.md) ^2.0.0
- [lodash](https://npm.io/package/lodash.md) ^3.1.0
- [bluebird](https://npm.io/package/bluebird.md) ^2.9.6
- [orientjs](https://npm.io/package/orientjs.md) latest
- [loopback-connector](https://npm.io/package/loopback-connector.md) ^1.2.1

## Recent versions

- 1.0.1 (latest) — 2015-07-07
- 1.0.0 — 2015-03-26

## README

## loopback-connector-orientdb

`loopback-connector-orientdb` is the OrientDB connector module for [loopback-datasource-juggler](https://github.com/strongloop/loopback-datasource-juggler/).


## Installation

````sh
npm install loopback-connector-orientdb --save
````

## Basic use

To use it you need `loopback-datasource-juggler`.

1. Setup dependencies in `package.json`:

    ```json
    {
      ...
      "dependencies": {
        "loopback-datasource-juggler": "latest",
        "loopback-connector-orientdb": "latest"
      },
      ...
    }
    ```

2. Use:

    ```javascript
        var DataSource = require('loopback-datasource-juggler').DataSource;
        var dataSource = new DataSource('orientdb', {
            host: 'localhost',
            port: 3306,
            database: 'mydb',
            username: 'myuser',
            password: 'mypass'
        });
    ```
    You can optionally pass a few additional parameters supported by [`oriento`](https://github.com/codemix/oriento),

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