co-walk

0.0.2 • Public • Published

co-walk

walk a file tree and return a list of files

Installation

$ npm install co-walk

Example

var path = __dirname + '/app'
 
var files = yield walk(path, {
  symlinks: true,
  ignore: ['art/**', 'node_modules']
})
// -> ['/home/user/app/.gitignore', ...]

Api

walk(path, opts)

walk a file tree and return a list of files

  • path: full path to folder
  • opts:
    • symlinks: follow symlinks and return origin path [false]
    • ignore: a list which folders, files you want to ignore

Tests

$ make test

Licence

MIT

Readme

Keywords

Package Sidebar

Install

npm i co-walk

Weekly Downloads

7

Version

0.0.2

License

MIT

Last publish

Collaborators

  • queckezz