Skip to content

v0.0.5

Pre-release
Pre-release
Compare
Choose a tag to compare
@drashbot drashbot released this 08 Apr 23:31
fd8a18a

Importing

In the browser:

<script src="https://unpkg.com/@drashland/moogle@0.0.5"></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.5/mod.ts";
const service = new Moogle();
// TypeScript
import { Moogle } from "https://deno.land/x/moogle@v0.0.5/mod.ts";
const service = new Moogle<MyType>();