1.0.1 • Published 5 years ago
@johnwayne/counters v1.0.1
@johnwayne/counters
Package with two counters Counter and DecreasingCounter constructors.
Installation
npm install @johnwayne/countersUsage
To run demo app clone this repo and simply run:
npm installnpm startAPI
Every counter get one argument - selector of element to be rendered in. Counter should be initialized after creating by calling '.init()' method.
import { Counter, DecreasingCounter } from '@johnwayne/counters'
const counter1 = new Counter('.counter-1')
counter1.init()
const counter2 = new DecreasingCounter('.counter-2')
counter2.init()