Socket
Socket
Sign inDemoInstall

@danmasta/walk

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@danmasta/walk

Directory and file walking utility for node apps


Version published
Weekly downloads
12
decreased by-7.69%
Maintainers
1
Weekly downloads
 
Created
Source

Walk

Directory and file walking utility for node apps

Features:

  • Easy to use
  • Sync, async, streams, and promise api
  • Simple filtering with glob pattern matching
  • Require file contents or read as stream, buffer, or string
  • Resolves require-style path strings
  • Normalized file objects with helper methods
  • Fast pattern matching via micromatch
  • Include and exclude pattern matching options

About

We needed a better way to walk directories and read files during build and/or start time. I wanted an api that was simple, supported glob pattern matching like gulp, and returned objects with a similar format as vinyl. This package allows you to simply read any directory (or file), return an array of objects, and filter results with glob pattern matching. It can also require file contents, read as strings, streams, or buffers, and resolve require-style path strings.

Usage

Add walk as a dependency for your app and install via npm

npm install @danmasta/walk --save

Require the package in your app

const walk = require('@danmasta/walk');

Options

nametypedescription
cwdstringBase directory to start walk from. Default is process.cwd
rootstringDirectory or file path as root to walk from. This gets normalized as path.resolve(cwd, root). Default is ./
requirebooleanIf true, file.contents will be a resolved object using require. Default is false
streambooleanIf true, file.contents will be a Readable stream. Default is false
readboolean|stringIf true, will read file contents as a buffer or string. If string, accepts either 'require', 'stream', or 'contents'. Default is false
syncbooleanWether or not we are running in synchronous mode
contentsbooleanIf true, will read file contents as string. Default is false
bufferbooleanIf true, when reading file conents, contents will remain a buffer instead of being converted to a string. Default is false
srcArray|String|RegExpMicromatch pattern for result filtering by including any matches. Can be a path string, glob pattern string, regular expression, or an array of strings. Defaults to *(../)*(**/)*
ignoreArray|String|RegExpMicromatch pattern for result filtering by ignoring any matches. Can be a path string, glob pattern string, regular expression, or an array of strings. Defaults to `(../)(**/)(.git
dotbooleanWhether or not to include dot files when matching. Default is true
cbfunctionFunction to call when flushing a file object. Default is _.noop

Methods

NameDescription
walk(path, opts)Get a list of files based on specified options. Returns a promise that resolves with an array of file objects
walk.syncSync version of walk. Returns an Array
contents(path, opts)Get the contents of files based on specified options. Returns a promise that resolves with an array of file objects
contents.syncSync version of contents. Returns an Array
each(path, opts, iteratee)Runs an iteratee function for each file based on specified options. Returns a promise that resolves with an array of file objects. Iteratee takes one argument file
each.syncSync version of each. Returns an Array
require(path, opts)Get the contents of files by requiring them. Returns a promise that resolves with an array of file objects
require.syncSync version of require. Returns an Array
stream(path, opts)Returns a read stream of file objects
stream.syncSync version of stream. Loads file data synchronously. Returns a read stream

Each method takes an optional path and options param as arguments. The each methods also accept an iteratee function as the last argument

File Objects

Each file returned from walk has the following signature

Properties

nametypedescription
cwdstringCurrent working directory. Defaults to process.cwd
rootstringBase directory to use for relative pathing. Defaults to cwd
pathstringAbsolute path of the file on disk
relativestringRelative path of file based from normalized root
relativeFromCwdstringRelative path of file based from normalized cwd
dirstringParent directory where file is located
basestringFile name with extension
namestringFile name without extension
extstringFile extension
statobjectThe fs.stat object for the file
contentsstring|objectContents of the file. If require is true, will be resolved object, otherwise string. Default is null

Methods

namedescription
isBufferReturns true if file.contents is a buffer
isStreamReturns true if file.contents is a stream
isNullReturns true if file.contents is null
isStringReturns true if file.contents is a string
isDirectoryReturns true if the file is a directory
isSymbolicReturns true if the file is a symbolic link

Examples

Walk

const walk = require('@danmasta/walk');

Walk the current working directory, exclude all .json files

walk('./', { src: '**/*.!(json)' }).then(res => {
    console.log('files:', res);
});

Walk a child directory, include only .json files

walk('./config', { src: '**/*.json' }).then(res => {
    console.log('files:', res);
});

Walk a directory using an absolute path

walk('/usr/local').then(res => {
    console.log('files:', res);
});

Contents

Read the contents of all pug files in ./views

walk.contents('./views', { src: '**/*.pug' }).then(res => {
    console.log('templates:', res);
});

Each

Require all js files in the ./routes directory and run a callback for each one

walk.each('./routes', { src: '**/*.js', require: true }, route => {
    app.use(route());
}).then(res => {
    console.log('all routes loaded');
});

Synchronous Methods

To use the sync version of any method just append .sync to the end of the method name

const walk = require('@danmasta/walk');

Load all templates from the ./views directory

const templates = walk.contents.sync('./views', { src: '**/*.pug' });
console.log('templates:', templates);

Contact

If you have any questions feel free to get in touch

Keywords

FAQs

Package last updated on 24 Feb 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc