1.0.2 • Published 2 years ago

@diet-hero/counter-npm v1.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

@diet-hero/counter-npm

Package with two 'Counters' and 'DecreasingCounter' constructors

npm install @diet-hero/counter-npm

Usage

To run demo app clone this repo and simply run:

npm instal
npm start

API

Every counter gest one argument -selector of element to be rendered in Counter should be initialized after creation by calling '.init()' method.

import { Counter, DecreasingCounter } from '@diet-hero/counter-npm' 

const counter1 = new Counter('.counter-1')
counter1.init()

const counter2 = new DecreasingCounter('.counter-2')
counter2.init()
```# counter-npm