Delete files/folders using globs
Pretty much rimraf with support for multiple files and globbing.
$ npm install --save del
var del = require('del');
del(['tmp/*.js', '!tmp/unicorn.js'], function (err) {
console.log('Files deleted');
});
Required
Type: string
, array
See supported minimatch patterns.
Type: object
See the node-glob options.
Type: boolean
Default: false
Allow deleting the current working directory and files/folders outside it.
See trash.
MIT © Sindre Sorhus