Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Brian-McBride/deepstream.io-storage-arangodb
ArangoDB storage connector for deepstream.io
https://github.com/Brian-McBride/deepstream.io-storage-arangodb
Last synced: 26 days ago
JSON representation
ArangoDB storage connector for deepstream.io
- Host: GitHub
- URL: https://github.com/Brian-McBride/deepstream.io-storage-arangodb
- Owner: Brian-McBride
- License: other
- Created: 2017-06-21T20:58:50.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-23T06:07:19.000Z (almost 7 years ago)
- Last Synced: 2024-08-10T06:51:14.444Z (4 months ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-arangodb - deepstream.io-storage-arangodb
README
# deepstream.io-storage-arangodb [![npm version](https://badge.fury.io/js/deepstream.io-storage-arangodb.svg)](http://badge.fury.io/js/deepstream.io-storage-arangodb)
[deepstream](http://deepstream.io) storage connector for [arangodb](https://www.arangodb.com/)
##Basic Setup
```yaml
plugins:
storage:
name: arangodb
options:
username: 'deepstream_user'
password: 'mySuperSecret'
databaseURL: 'http://127.0.0.1:8529'
databaseName: 'myDatabase'
defaultCollection: 'someCollection'
splitChar: '/'
``````javascript
var Deepstream = require( 'deepstream.io' ),
ArangoDBStorageConnector = require( 'deepstream.io-storage-arangodb' ),
server = new Deepstream();server.set( 'storage', new ArangoDBStorageConnector( {
username: 'deepstream_user',
password: 'mySuperSecret'
connectionString: 'http://127.0.0.1:8529',
splitChar: '/'
}));server.start();
```