kena0ki / adima

Amidakuji(あみだくじ) on the web

Home Page:https://adima.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Adima

codecov

This is a fast, lightweight, no dependency, not so impressive, and completely useless library for Amidakuji ;-)

Basic usage

Use with installation.

Install by npm

npm install adima

and use it.

import Adima from 'adima';

const container = document.getElementById('some-container');
const adima = new Adima(container);
adima.init();

Use without installation

<script type="module" >
  import Adima from 'https://unpkg.com/adima@latest/dist/index.js';

  const container = document.getElementById('some-container');
  const adima = new Adima(container);
  adima.init();
</script>

Demo

Demo page is here
demo

API

API is here

Lisence

MIT

About

Amidakuji(あみだくじ) on the web

https://adima.netlify.app/

License:MIT License


Languages

Language:TypeScript 84.7%Language:JavaScript 15.3%