Coder Social home page Coder Social logo

dir-ls's Introduction

dir-ls

Do the traversal of the source directory structure

Installation

$ npm install dir-ls --save

Usage

with options mode:

let ls = require('dir-ls')

ls('./someDir', {
    readMode: 'utf8',
    justFind: /png|jpg|gif/,
    dirCallback(res) {
        //do something here
    },
    fileCallback(res) {
        //do something here
    },
    errorHandle(err) {
        //handle error
    },
    allDone(){
        //dir-ls have been finished
    }
})

without options mode:

let ls = require('dir-ls')

ls('./someDir', function(res){
    //equal to fileCallBack
})

Docs

There is only one function in dir-ls.

Function(path[, options])

@param

  • path <string> Do the traversal of the source directory structure, the pathis the target directory that you want to traverse it.
  • options <object>|<Function> The options could be an object which configures the methods detailedly.

options.readMode {string}

If no readMode is specified, then the raw buffer is returned.

options.justFindWithName {RegExp|string}

This options will filter file name and return the files that you want.

options.justFind {RegExp|string}

This options will filter other file formats and return the files that you want. Notic: if you want to match more than one file format such as json and js, you need to write the RegExp like /json$|js$/ to make sure the dir-ls use the whole word to match the file

options.dirCallback {function}

This function will be called after an directory have been traversed.

options.fileCallback {function}

This function will be called after a file have been traversed.

options.allDone {function}

This function will be called after the whole directory have been traversed.

options.errorHandle {function}

This function will be called when any error were thrown.

object: function

The options could be a function which perform as options.fileCallback.

Test

$ npm test

dir-ls's People

Contributors

pupateyf avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.