npm install itako-token --saveitako-token has type and value and reader options.
import Itako from 'itako';
import Reader from 'itako-text-reader-speech-synthesis';
import Token from 'itako-token';
const token = new Token('text', 'greeting', {volume: 1, pitch: 1.5});
// speech-synthesis say "greeting" using option
new Itako([new Reader]).readToken(token);the class defines the reader type, sentence, and grant information for itako-readers.
define the type of reader. reader will ignore the except specific type(eg text-reader ignores the audio type).
define the reader read aloud value(eg text or audio file url).
define the grant information about the read aloud(eg volume, pitch, speaker, etc).
define the meta information for debug.
create a new instance using an instance.
const token = new Token('text', 'greeting', { volume: 1, pitch: 1.5 });
const clonedToken = token.clone({ cloned: true }).setOptions({ volume: 0.5 });
console.log(JSON.stringify(token));
// {"type":"text","value":"greeting","options":{"volume":1,"pitch":1.5},"meta":{}}
console.log(JSON.stringify(clonedToken));
// {"type":"text","value":"greeting","options":{"volume":0.5,"pitch":1.5},"meta":{"cloned":true}}node
> require('itako-token')('error')
# TypeError: Cannot convert undefined or null to object
# at f (/Users/itakojs/itako-token/lib/index.js:1:2469)published code is compressed and the source map is provided. not supported by the sourcemap in NodeJS. but this resolved in the node-source-map-support.
npm install source-map-support --save-devimport 'source-map-support/register';or...
$ mocha --require source-map-support/registerRequirement global
- NodeJS v5.10.0
- Npm v3.8.3
git clone https://github.com/itakojs/itako-token
cd itako-token
npm install
npm test