npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@souct/countdown

v3.1.0

Published

Simple, easy and performance countdown for angular

Downloads

53

Readme

ngx-countdown

Simple, easy and performance countdown for angular

NPM version Build Status codecov

Demo

Usage

1. Install

npm install ngx-countdown --save

import CountdownModule

import { CountdownModule } from 'ngx-countdown';

@NgModule({
    imports: [ BrowserModule, CountdownModule ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
export class AppModule { }

2、Template

<countdown [config]="config"
    (start)="onStart()"
    (finished)="onFinished()"
    (notify)="onNotify($event)"></countdown>

| Name | Type | Default | Summary | | ------- | ------------- | ----- | ----- | | config | Config | - | see Config | | begin() | - | - | Triggers when {demand: false} | | restart() | - | - | - | | stop() | - | - | - | | pause() | - | - | - | | resume() | - | - | - | | start | EventEmitter | - | Triggers when start | | finished | EventEmitter | - | Triggers when finished | | notify | EventEmitter(time: number) | - | Triggers when notify, need setting config.notify values | | event | EventEmitter<{ action: string, left: number }> | - | Catch all event |

How call component methods

@ViewChild(CountdownComponent) counter: CountdownComponent;
resetTimer(){
    this.counter.restart();
    this.counter.stop();
    this.counter.pause();
    this.counter.resume();
}

Config

| Name | Type | Default | Summary | | ------- | ------------- | ----- | ----- | | demand | boolean | false | start the counter on demand, must call begin() to starting | | template | string | $!h!时$!m!分$!s!秒 | Custom render template, if is empty use the <ng-content> content, and $!s-ext! it's 0.1s accuracy | | leftTime | number | 0 | Calculate the remaining time based on the server, e.g: 10,5.5(May be dropped frames) (Unit: seconds) | | stopTime | number | 0 | 结束时间:指的是根据本地时间至结束时间进行倒计时。(单位:UNIX时间戳 ms) | | varRegular | RegExp | /\$\{([\-\w]+)\}/g | 模板解析正则表达式,有时候由于模板结构比较特殊,无法根据默认的表达式进行解析,那就需要修改它。 | | clock | Array | | 时钟控制数组,特殊需求时可以修改,里面是三元组:指针名、进制、位数,可参考大于99小时demo | | notify | number[] | | 第xx秒时调用 notify 函数,值必须是正整数 | | repaint | Function | | Custom repaintes |

About repaints

The timer will call repaint function every time, if it's 0.1s accuracy, it will be more frequent. so you can make same special effects, like Flip.

Troubleshooting

Please follow this guidelines when reporting bugs and feature requests:

  1. Use GitHub Issues board to report bugs and feature requests (not our email address)
  2. Please always write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.

Thanks for understanding!

License

The MIT License (see the LICENSE file for the full text)