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 🙏

© 2025 – Pkg Stats / Ryan Hefner

struct-fsraw

v1.0.1

Published

Creates a structured representation of a directory, including file metadata, file size, symlinks.

Downloads

171

Readme

struct-fsraw

Archetype: Node.js package

Filesystem Structure Extraction for Node.js

struct-fsraw retrieves a structured representation of a directory, including file metadata, file size, symlinks.

Details

  • Recursive Scanning: Optional recursive traversal.
  • Symlink Support: Detect and resolve symbolic links, with an option to prune unnecessary symlink data.
  • Metadata Inclusion: Optionally include file creation and modification timestamps.
  • Size Inclusion: Optionally include file sizes.
  • Custom Key Mapping: Easily switch between full key names and a compact representation using a key mapping object.

Install

npm install struct-fsraw

Usage

Basic Example

import struct from 'struct-fsraw';

const structure = await struct('./my-directory');
console.log(JSON.stringify(structure, null, 2));

Output:

{
    "path": "/absolute/path/to/my-directory",
    "type": "d",
    "symlink": false,
    "children": [
        {
            "path": "/absolute/path/to/my-directory/file.txt",
            "type": "f",
            "symlink": false
        }
    ]
}

Advanced Example

import { struct, getKeys } from 'struct-fsraw';

const keyMapping = getKeys(); // Retrieve the default compact key mapping

const fileTree = await struct('./path/to/directory', {
    meta: true, // Include creation and modification times
    size: true, // Include file sizes
    recursive: true, // Recursively scan directories (default)
    prune: false, // Do not prune symlink data
    keys: keyMapping, // Use custom/compact key names
});

console.log(JSON.stringify(fileTree, null, 2));

⚙️ API Reference

struct(dir, options = {})

Scans a directory and returns its structured representation.

| Parameter | Type | Default | Description | | --------- | ------ | ---------- | ------------------------------ | | dir | string | (Required) | Path of the directory to scan. | | options | object | {} | Optional configuration. |

🔹 Options

| Option | Type | Default | Description | | ----------- | ------- | ------- | ---------------------------------------------------- | | meta | boolean | false | Include file creation and modification timestamps. | | size | boolean | false | Include file sizes in bytes. | | recursive | boolean | true | Recursively scan subdirectories. | | prune | boolean | false | Remove unnecessary symlink metadata unless required. | | keys | object | {} | Customize key names for output. |

Related Packages

These links might be suffixed with "-node" in the future if conflicts arise.

Links

Development Homepage

https://github.com/alexstevovich/struct-fsraw

This link might be suffixed with "-node" in the future if conflicts arise.

License

Licensed under the Apache License 2.0.