1.3.0 • Published 7 years ago

cleanser v1.3.0

Weekly downloads
10
License
ISC
Repository
github
Last release
7 years ago

cleanser

NPM version Build Status

A utility to safely clean a directory from clutter such as log files, modules, generated tests and more.

About

This small command line tool uses rimraf to safely clean the directory specified from clutter.

Install

$ npm install -g cleanser

Usage

Command-line

Cleans up the current working directory:

$ cleanser

Cleans a given directory:

$ cleanser ~/path/to/clean

Displays the help message:

$ cleanser --help

Programmatic API

var cleanser = require('cleanser');

cleanser('~/path/to/clean', function (err) {});

License

ISC © Joaquin Briceno