A fast, low memory, transactional, index & query enabled NoSQL database server for node.js that easily syncs with browser and node.js clients and servers
Find a file
2018-11-02 16:37:05 +01:00
src Added https, user authentication, authorization rules 2018-11-02 16:37:05 +01:00
LICENSE Added license file, added repository url in package.json 2018-08-07 11:40:50 +02:00
package.json Version to 0.1.0 2018-10-26 16:24:04 +02:00
README.md Added readme 2018-10-26 16:23:38 +02:00

AceBase database server

This repository is to setup an http endpoint for a local AceBase database instance. See AceBase for more information about AceBase databases and usage.

Getting started

Install the acebase-server npm package: npm install acebase-server (github, npm)

Creating an AceBase server

Use the following code the create a new AceBase webserver endpoint:

const { AceBaseServer } = require('acebase-server');
const dbname = 'mydb';
const server = new AceBaseServer(dbname, { host: "localhost", port: 5757 });
server.on("ready", () => {
    console.log("SERVER ready");
});

Connect to a server

See acebase-client on npm or github