Home

axideDB logo


The official Node.js axideDB client. Simple and lightweight.

Full documentation | GitHub | NPM | axideDB

Basic usage

const AxideClient = require('axide-client')

const db = new AxideClient('localhost:5135')

db.createHash('users', 'ethanent', {
    'name': 'Ethan'
}).then(() => {
    console.log('User saved!')
}).catch((err) => {
    console.log('Save failed. ' + err)
})

Install

npm install axide-client

About axideDB

axideDB is a new experimental database built using Node.JS. Information about axideDB is available at its GitHub repository!

Full documentation

Find the full documentation over here!