https://github.com/kutyel/ng2-timer
Angular 2 Timer
https://github.com/kutyel/ng2-timer
Last synced: 8 months ago
JSON representation
Angular 2 Timer
- Host: GitHub
- URL: https://github.com/kutyel/ng2-timer
- Owner: kutyel
- License: mit
- Created: 2016-04-05T16:28:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-18T21:09:52.000Z (over 9 years ago)
- Last Synced: 2025-02-02T06:04:28.479Z (8 months ago)
- Language: HTML
- Size: 10.7 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# ng2-timer
Angular 2 Timer[](https://david-dm.org/kutyel/ng2-timer)
[](https://david-dm.org/kutyel/ng2-timer#info=devDependencies)
[](https://npmjs.com/packages/ng2-timer)
[](https://paypal.me/flaviocorpa)## Installation
```
npm install --save ng2-timer
```## Usage
```ts
import { Component } from "angular2/core";
import { TimerComponent } from "./ng2-timer";@Component({
selector: "my-app",
template: `
Angular 2 Timer Example
`,
directives: [TimerComponent]
})
export class AppComponent { }
```