# ojichat.js

> A pure JavaScript porting of ojichat.

Latest version **0.0.6** (published 2019-10-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install ojichat.js
pnpm add ojichat.js
yarn add ojichat.js
bun add ojichat.js
```

Provides the command `ojichatjs`.

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.6 |
| Published | 2019-10-14 |
| First published | 2019-06-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >= 10.13 |
| Dependencies | 4 |
| Unpacked size | 222.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | kaiba |
| Maintainers | kaiba |

## Links

- npm: https://www.npmjs.com/package/ojichat.js
- npm.io page: https://npm.io/package/ojichat.js

## Dependencies (4)

- [tslib](https://npm.io/package/tslib.md) ~1.9.3
- [commander](https://npm.io/package/commander.md) ^2.20.0
- [underscore](https://npm.io/package/underscore.md) ^1.9.1
- [@types/underscore](https://npm.io/package/@types/underscore.md) ^1.9.0

## Recent versions

- 0.0.6 (latest) — 2019-10-14
- 0.0.5 — 2019-06-27
- 0.0.4 — 2019-06-27
- 0.0.3 — 2019-06-25
- 0.0.2 — 2019-06-24
- 0.0.1 — 2019-06-24

## README

A JavaScript porting of [ojichat](https://github.com/greymd/ojichat).

## How to use

### CLI

```sh
$ yarn add ojichatjs

$ node_modules/.bin/ojichatjs -h
Usage: ojichatjs [options]

Options:
  -v, --version              output the version number
  -e, --emojinum <emojinum>  EmojiNum
  -h, --help                 output usage information

$ node_modules/.bin/ojichatjs
ｵｼﾞｻﾝはシュリちゃん一筋だよ😴(＃￣З￣)ゆっくり、身体休めてね😄😃✋💕(^з<)😚オヤスミナサイ💤🛌

$ node_modules/.bin/ojichatjs -e 1
すみえちゃん、オハヨー❗すみえちゃんにとって素敵な1日になりますように(^з<)😘

$ node_modules/.bin/ojichatjs -e 1 kaiba
風邪ひかないようにね（笑）ボクはkaibaチャンの味方だからね💕(^з<)
```

### JavaScript

```JavaScript
import * as ojichat from "ojichat.js";

// simple
console.log(new ojichat.Generator().getMessage());
// with target name
console.log(new ojichat.Generator("kaiba").getMessage());
// with target name and emoji number
console.log(new ojichat.Generator("kaiba", 1).getMessage());
```

## Available scripts

+ `clean` - remove coverage data, Jest cache and transpiled files,
+ `build` - transpile TypeScript to ES6,
+ `build:watch` - interactive watch mode to automatically transpile source files,
+ `lint` - lint source files and tests,
+ `test` - run tests,
+ `test:watch` - interactive watch mode to automatically re-run tests

## License
MIT

---
_Source: https://npm.io/package/ojichat.js · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
