</>PackageGraphPackageGraph

walker

npmv1.0.8

A simple directory tree walker.

Not recommended for new projects

No — walker should not be adopted for new projects. Last published 1782 days ago.

  • ?Adoption: grade ?, Not reported by this registry.

    No download data reported for this package yet.

  • FMaintenance: grade F, Failing.

    Last published 1782 days ago.

  • AWeight: grade A, Excellent.

    Pulls in 2 transitive packages, about 14 KB installed.

  • BSupply chain: grade B, Good.

    This package has a single maintainer (bus factor of 1).

  • ALicense: grade A, Excellent.

    Apache-2.0 — permissive, with no copyleft found in the dependency tree.

Grades are computed deterministically from registry metadata collected by PackageGraph — downloads, dependents, publish dates, the resolved dependency tree, maintainer count, and declared licenses. No third-party scores are used.

Install cost

What you actually take on by adding walker to a project.

1
Direct dependencies

Runtime packages this one declares itself.

2
Total installed

Distinct packages in the full runtime tree, deduplicated the way a package manager would.

14 KB
Install size

Unpacked size of this package plus its entire runtime tree.

2
Tree depth

Longest resolved dependency chain below this package.

Licenses in the dependency tree

BSD-3-Clause

Every license you inherit by installing walker, not just its own. Check this before a legal review, not after.

Compatibility

Node.js
No constraint declared
Module format
CommonJS only
TypeScript
No bundled types
Install scripts
None

Quick start

A usage example from the walker README.

javascriptFull README ↗
Walker('/etc/')
  .filterDir(function(dir, stat) {
    if (dir === '/etc/pam.d') {
      console.warn('Skipping /etc/pam.d and children')
      return false
    }
    return true
  })
  .on('entry', function(entry, stat) {
    console.log('Got entry: ' + entry)
  })
  .on('dir', function(dir, stat) {
    console.log('Got directory: ' + dir)
  })
Example truncated — see the full README.

walker vs the alternatives

Packages solving a similar problem in the npm ecosystem, compared on the signals that drive an adoption decision.

PackageWeekly downloadsDependentsLicenseLast release
walkerthis page03Apache-2.04 years ago
@humanfs/core01Apache-2.01 day ago
@humanfs/types02Apache-2.01 day ago
@humanfs/node01Apache-2.01 day ago
make-dir02MIT1 day ago
normalize-path72.6M1MIT1 day ago

Dependencies

Declared by walker v1.0.8. Runtime dependencies are installed with the package; dev dependencies are not.

Runtime (1)

Dev (1)

mocha 9.1.3

Used by

Popular packages that depend on walker.

Relationship graph

Dependencies (left) and dependents (right) of walker.

Frequently installed together

Release history

No releases in the last two years, typically about 98 days apart.

Recent versions of walker
VersionPublishedSizeLicense
1.0.8latest4 years ago5.7 KBApache-2.0
1.0.711 years agoApache-2.0
1.0.612 years agoApache-2.0
1.0.513 years agoApache-2.0
1.0.315 years agoApache-2.0
1.0.215 years agoApache-2.0
1.0.115 years agoApache-2.0
1.0.015 years agoApache-2.0
0.0.415 years agoApache-2.0
0.0.115 years agoApache-2.0
0.0.315 years agoApache-2.0

Overview

walker is an npm package that a simple directory tree walker. It has 3 known dependents in the graph. The latest version is 1.0.8, released under the Apache-2.0 license.

Who should use it

Teams working in the npm ecosystem who need a simple directory tree walker and value a focused solution.

When not to use it

Consider an alternative if you need to have first-class TypeScript types out of the box, or if a more actively-maintained option better fits your npm stack.

Pros

  • Clear open-source license (Apache-2.0).
  • Lean dependency tree (2 direct dependencies).

Cons

  • No bundled TypeScript types (may require a separate @types package).

Auto-generated from collected registry metadata. No external claims are inferred.

Maintainers

Keywords

Frequently asked questions

Should I use walker?

No — walker should not be adopted for new projects. Last published 1782 days ago.

How do I install walker?

Run `npm install walker` to add walker to your npm project.

How many dependencies does walker have?

walker declares 2 direct dependencies and pulls in 2 packages in total once its runtime tree is resolved totalling about 14 KB on disk.

What license is walker released under?

walker is distributed under the Apache-2.0 license.

How popular is walker?

npm does not publish download counts. Within PackageGraph's crawl, 3 known packages depend on walker.

Is walker still maintained?

The most recent release of walker (v1.0.8) was published 4 years ago.

Does walker run install scripts?

No. walker does not define preinstall, install, or postinstall scripts, so installing it does not execute publisher-supplied code.