Socket
Socket
Sign inDemoInstall

@danmasta/walk

Package Overview
Dependencies
2
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

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-33.33%
Maintainers
1
Install size
1.60 MB
Created
Weekly downloads
 

Readme

Source

Walk

Directory and file walking utility for node apps

Features:

  • Easy to use
  • Simple, lightweight, and fast
  • 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
  • Only 2 dependencies: micromatch, lodash

About

I needed a better way to walk directories and read files during build and/or run 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, or read them 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');

By default walk returns a readable stream interface. You can use the methods: promise(), map(), each(), and sync() to consume file objects via promises or as a synchronous array.

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
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|node_modules)
dotbooleanWhether or not to include dot files when matching. Default is true
resolvebooleanWhether or not to attempt to resolve file paths if not found. Default is true

Methods

NameDescription
promise()Returns a promise that resolves with an array of file objects
map(fn)Runs an iterator function over each file. Returns a promise that resolves with the new array
each(fn)Runs an iterator function over each file. Returns a promise that resolves with undefined
sync()Walks files and directories in syncronous mode. Returns an array of file objects
require()Enables reading of file contents by requiring them
stream()Enables reading of file contents as a stream
buffer()Enables reading of file contents as a buffer
contents(str)Enables reading of file contents. First parameter can be: 'require', 'stream', or 'buffer'
resolveFilePath(str)Resolve a file path relative to options

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
isBlockDeviceReturns true if the file is a block device
isCharacterDeviceReturns true if the file is a character device
isFIFOReturns true if the file is a first-in-first-out (FIFO) pipe
isFileReturns true if the file is a file
isSocketReturns true if the file is a socket
isEmptyReturns true if the file is empty (zero bytes)

Examples

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

Walk the current working directory and pipe all files to a destination stream

walk('./').pipe(myDestinationStream());

Walk the current working directory, exclude all .json files

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

Walk a child directory, include only .json files

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

Walk a directory using an absolute path

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

Read the contents of all pug files in ./views

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

Read the contents of all pug files in ./views as a buffer

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

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

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

Load all templates from the ./views directory synchronously

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

Contact

If you have any questions feel free to get in touch

Keywords

FAQs

Last updated on 03 Jul 2020

Did you know?

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc