New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

itako-token

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itako-token

a text reader token class

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

Itako Token

Installation

npm install itako-token --save

Usage

itako-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);

API

the class defines the reader type, sentence, and grant information for itako-readers.

setType(type) -> this

define the type of reader. reader will ignore the except specific type(eg text-reader ignores the audio type).

setValue(value) -> this

define the reader read aloud value(eg text or audio file url).

setOption(key, value) -> this

setOptions(options) -> this

define the grant information about the read aloud(eg volume, pitch, speaker, etc).

setMeta(key, value) -> this

define the meta information for debug.

clone(meta) -> token

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}}

Stacktrace was broken

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-dev
import 'source-map-support/register';

or...

$ mocha --require source-map-support/register

Development

Requirement global

  • NodeJS v5.10.0
  • Npm v3.8.3
git clone https://github.com/itakojs/itako-token
cd itako-token
npm install

npm test

License

MIT

Keywords

itako

FAQs

Package last updated on 19 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts