Dino Databse
Github
  • â„šī¸Introduction
  • 🔗Get Stared
  • 📜Guides
    • âŦ‡ī¸Installation
    • 📉Data Hierarchy
  • âš™ī¸API
    • 📊database moudle
    • 🌐server module
    • â†•ī¸client module
    • 🔧Database operations
    • 🔨Server REST API
Powered by GitBook
On this page
  • The main Database
  • Client
  • Server
  1. Guides

Installation

installing dino db

The main Database

The base dino db is cross platform, it can be used in the browser and in backend environments.

Node

# npm
npm install dino-db
# yarn
yarn add dino-db

Browser

// Module Bundler (recomended)
import * as dinoDb from 'dino-db'
// cdn
import * as dinoDb from 'https://cdn.skypack.dev/dino-db'

Client

The client is built to be cross platform, it can also be used in the browser and in backend environments.

Node

# npm
npm install dino-db-client
# yarn
yarn add dino-db-client

Browser

// Module Bundler
import * as dinoDb from 'dino-db-client'
// cdn
import * as dinoDb from 'https://cdn.skypack.dev/dino-db-client'

Server

The server is a node module designed to be used in the backend. It is mainly used to expose you database to external applications and use the client to communicate with it.

Node

# npm
npm install dino-db-server
# yarn
yarn add dino-db-server

Importing

// node (require)
const dinoServer = require('dino-db-server');
// node (es6)
import * as dinoServer from 'dino-db-server'
PreviousGet StaredNextData Hierarchy

Last updated 2 years ago

📜
âŦ‡ī¸