Skip to content

v0.0.4

Compare
Choose a tag to compare
@drashbot drashbot released this 07 Apr 23:43
0ea5063

Importing

In the browser:

<script src="https://unpkg.com/@drashland/moogle@0.0.4"></script>

In Node:

# Using npm
$ npm install @drashland/moogle

# Using yarn
$ yarn add @drashland/moogle
// JavaScript
const Moogle = require("@drashland/moogle");
const service = new Moogle();
// TypeScript
import { Moogle } from "@drashland/moogle";
const service = new Moogle<MyType>();

In Deno:

// JavaScript
import { Moogle } from "https://deno.land/x/moogle@v0.0.4/mod.ts";
const service = new Moogle();
// TypeScript
import { Moogle } from "https://deno.land/x/moogle@v0.0.4/mod.ts";
const service = new Moogle<MyType>();