Skip to content

Getting started

Kito Kurone (黒音キト) edited this page Apr 25, 2021 · 4 revisions

0. System requirements

  • Node.js: v12 or later
    • OS independent: If Node.js works, it probably works in all environments.
  • The app is written in ES2019. So, it should also work on some modern browsers.

1. Install

CLI edition

npm install -g @kurone-kito/dantalion-cli

Library edition

npm install --save @kurone-kito/dantalion-core

2. Get the personality

CLI edition

dantalion personality 1993-10-09

Library edition

import { getPersonality } from '@kurone-kito/dantalion-core';
// const { getPersonality } = require('@kurone-kito/dantalion-core');

console.log(getPersonality('1993-10-09'));

Result

{
  "cycle": 10,
  "inner": "555",
  "lifeBase": "application",
  "outer": "789",
  "potential": ["Io", "Ii"],
  "workStyle": "125"
}

3. Get detailed information on personality

CLI edition

dantalion detail 555

Library edition

import { getDetail } from '@kurone-kito/dantalion-core';
// const { getDetail } = require('@kurone-kito/dantalion-core');

console.log(getDetail('555'));

Result

{
  "affinity": {
    "biz": {
      "100": 0,
      "108": 3,
      "125": 2,
      "555": 3,
      "789": 1,
      "888": 2,
      "919": 1,
      "000": 0,
      "001": 2,
      "012": 2,
      "024": 0,
      "025": 0
    },
    "love": {
      "100": 0,
      "108": 0,
      "125": 3,
      "555": 2,
      "789": 2,
      "888": 2,
      "919": 0,
      "000": 2,
      "001": 2,
      "012": 3,
      "024": 0,
      "025": 2
    }
  },
  "brain": "left",
  "communication": "fix",
  "management": "hope",
  "motivation": "skillUp",
  "position": "quick",
  "response": "action",
  "vector": "economically"
}