0.1.8 • Published 10 years ago

globy v0.1.8

Weekly downloads
11
License
MIT
Repository
github
Last release
10 years ago

globy

New glob library for Node.js. Search fast and exactly. Build Status Coverage Status

NPM

Installation

Requires (optional)

Install

$ npm install globy

Usage

var globy = require("globy");

var options = {
    "dot": true,
    "nocase": false,
    "nofollow": false,
};

var files = globy.glob("**/*.js", options);

API

globy.glob(pattern, [options])

Glob search files.

  • returns {String[]}
  • pattern {String} filepath pattern
  • options {Object=} search options
    • dot {Boolean} (default: false) if true, * and ** matchs dotfiles
    • nocase {Boolean} (default: false) if true, perform case-insensitive match
    • nofollow {Boolean} (default: false) if true, ** does not search symbolic link directory
    • cwd {String} (default: null) Change current working directory
0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago