typed-typings / npm-chokidar

Typings for chokidar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typed chokidar

Greenkeeper badge Build Status

Typescript Typings for chokidar.

Installation

typings install --save chokidar

Usage

import * as chokidar from 'chokidar';

// One-liner for current directory, ignores .dotfiles
chokidar.watch('.', { ignored: /[\/\\]\./ }).on('all', (event: string, path: string) => {
  console.log(event, path);
});

Contributing

You can run them the tests with npm run build and npm run test.


Based on typings by Stefan Steinhart

About

Typings for chokidar

License:MIT License


Languages

Language:TypeScript 100.0%