Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yui540/nicojs

ニコニコ風コメントを実装するライブラリ
https://github.com/yui540/nicojs

niconico npm npm-package

Last synced: 22 days ago
JSON representation

ニコニコ風コメントを実装するライブラリ

Awesome Lists containing this project

README

        

# nicoJS
ニコニコ動画風コメントを実装するライブラリ。

## Install
npm
```
npm install nicojs
```

git
```
git clone https://github.com/yuki540net/nicoJS
```

## Usage
```demo.js
nicoJS = require('nicoJS')

let nico = new nicoJS({
app : document.getElementById('app'),
width : 600,
height : 400,
font_size : 50, // opt
color : '#fff' // opt
})
```

任意のタイミングでコメントを流す
```demo.js
// コメント待機
nico.listen()

// コメント送信
nico.send('Hello World.', '色[option]', 'フォントサイズ[option]')
```

特定のコメントを流し続ける
```demo.js
// コメントを流し続ける
nico.loop([
'comment_1',
'comment_2',
'comment_3',
'comment_4'
])
```

## Lisence
このライブラリは、MIT Lisenceのもとで公開されています。