Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iwharris/timer

no-nonsense nodejs timer
https://github.com/iwharris/timer

Last synced: 1 day ago
JSON representation

no-nonsense nodejs timer

Awesome Lists containing this project

README

        

# timer
A no-nonsense nodejs timer

[![npm version](https://badge.fury.io/js/%40iwharris%2Ftimer.svg)](https://badge.fury.io/js/%40iwharris%2Ftimer)

## Installation

```bash
npm install @iwharris/timer
```

## Usage

```javascript
const Timer = require('@iwharris/timer');

const t = new Timer();

t.elapsedMilliseconds();

// 3421
```

## Development

```bash
git clone [email protected]:iwharris/timer.git
cd timer
npm install
```

### Testing

```bash
npm test
```

### Compiling Typescript

```bash
npm build
```