npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@eit6609/walker

v1.0.3

Published

A file and directory walker inspired by Python's os.walk()

Downloads

8

Readme

Walker

Walker is a file system walker, i.e. it lets you traverse a directory recursively listing its files and sub-directories. It was inspired by Python's os.walk().

Run this to install:

npm i @eit6609/walker

Examples

There are two functions in walker, one synchronous and one asynchronous. The first is the direct translation of Python's os.walk(), while the latter is more in the Node mainstream. The choice is yours.

This is an example of walk(), the synchronous API:

const { walk } = require('@eit6609/walker');

for (const [dirPath, dirNames, fileNames] of walk('/path/to/dir')) {
    console.log(`Members of ${dirPath}:`);
    console.log('- directories:', dirNames);
    console.log('- files:', fileNames);
}

Compare it with its Python's equivalent:

from os import walk;

for dirPath, dirNames, fileNames in walk('/path/to/dir'):
    print('Members of {}:'.format(dirPath));
    print('- directories:', dirNames);
    print('- files:', fileNames);

This is an example of walkAsync(), the asynchronous API:

const { walkAsync } = require('@eit6609/walker');

for (const promise of walkAsync('/path/to/dir')) {
    const [dirPath, dirNames, fileNames] = await promise;
    console.log(`Members of ${dirPath}:`);
    console.log('- directories:', dirNames);
    console.log('- files:', fileNames);
}

API Reference

walk()

function walk(dirPath: string): iterator

It takes a string with the path (absolute or relative) of the directory to scan.

The result is a JavaScript iterator which can be used in a for...of loop or "unrolled" to an array with [...walk('/path/to/dir')].

At every step the iterator yields an array containing three items:

  • a string with the path of the directory
  • an array of strings with the names of the subdirectories
  • an array of strings with the names of the files

The arrays contain names. If you need the path of a file or a directory, you can build it using path.join():

const
    { join } = require('path'),
    { walk } = require('@eit6609/walker');

for (const [dirPath, dirNames, fileNames] of walk('/path/to/dir')) {
    for (let i = 0; i < fileNames.length; i++) {
        console.log(join(dirPath, fileNames[i]));
    }
}

This is the behaviour of the traversal:

  • it proceeds top down
  • it follows the symbolic links representing directories

The second item of the result, i.e. the array with the names of the directories, can be used to change the traversal, because it will be used in the next step of the iteration. This means that if you add or remove names to the array, or rearrange the names, the next step will behave differently. Quoting the docs of Python's os.walk():

You can therefore prune the search, impose a specific order of visiting, or even inform walk() about directories the caller creates or renames before it resumes walk() again.

walkAsync()

function walkAsync(dirPath: string): promise of iterator

The only difference with walk() is that the iterator yields a promise of the result, that needs to be resolved with await or then().

Enjoy!