Skip to content

fweibel/arangojs

 
 

Repository files navigation

ArangoJS for deno

ArangoJS bassed on official ArangoJS and has been ported for use on Deno, on top of the deno fetch.

Installation

Run

import { Database } from "https://raw.githubusercontent.com/dmpjs/arangojs/master/mod/database.ts"; // import from github as raw data

import { Database } from "https://deno.land/x/arangojs/mod/database.ts"; // If module is uploaded into deno.land

Usage

Basic usage

import { Database } from "https://raw.githubusercontent.com/dmpjs/arangojs/master/mod/database.ts"; // import from github as raw data

const db = new Database();

console.log(await db.version());

For more, please visit the ArangoJS docs.

Test

Run

deno test ./test.ts

Versioning

This library follows semantic versioning, and additions to the code ruleset are performed in major releases.

Changelog

Please have a look at CHANGELOG.md.

Contributing

Please have a look at CONTRIBUTING.md.

Code of Conduct

Please have a look at CODE_OF_CONDUCT.md.

License

This work is dual-licensed under Apache 2.0 and MIT

Please have a look at LICENSE.md.

Some files inside this package are licensed using the Apache License, Version 2.0.

Please have a look at LICENSE_APACHE.md.

About

ArangoJS is based on the official ArangoJS and has been ported to Deno, on top of the deno fetch.

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 99.7%
  • JavaScript 0.3%