Skip to main content

SDK

Microgen SDK (Software Development Kit) could be installed whether on Client Side Javascript such as Vanilla Js, React, Vue, etc, and also Server Side Javascript such as Node Js.

JavaScript

Installation via NPM

npm install microgen-v3-sdk

Installation via CDN

<script src="https://cdn.jsdelivr.net/npm/microgen-v3-sdk"></script>

Usage

Configure the package with your project's API Key obtained from the dashboard or project settings.

ES Modules:

import { MicrogenClient } from "microgen-v3-sdk";

const microgen = new MicrogenClient({ apiKey: "YOUR_API_KEY" });

CommonJS:

const { MicrogenClient } = require("microgen-v3-sdk");

const microgen = new MicrogenClient({ apiKey: "YOUR_API_KEY" });

With the SDK we can perform Microgen built-in features for:

  • Auth
  • Service
  • Realtime
  • Storage

Quick Start with SDK and React.js / Next.js

Coming Soon