An open API service indexing awesome lists of open source software.

https://github.com/flex-development/fst

File system tree format
https://github.com/flex-development/fst

ast file-system fst syntax-tree unist unist-spec

Last synced: 3 months ago
JSON representation

File system tree format

Awesome Lists containing this project

README

        

# fst

[![github release](https://img.shields.io/github/v/release/flex-development/fst.svg?include_prereleases\&sort=semver)](https://github.com/flex-development/fst/releases/latest)
[![npm](https://img.shields.io/npm/v/@flex-development/fst.svg)](https://npmjs.com/package/@flex-development/fst)
[![module type: esm](https://img.shields.io/badge/module%20type-esm-brightgreen)](https://github.com/voxpelli/badges-cjs-esm)
[![license](https://img.shields.io/github/license/flex-development/fst.svg)](LICENSE.md)
[![conventional commits](https://img.shields.io/badge/-conventional%20commits-fe5196?logo=conventional-commits\&logoColor=ffffff)](https://conventionalcommits.org)
[![typescript](https://img.shields.io/badge/-typescript-3178c6?logo=typescript\&logoColor=ffffff)](https://typescriptlang.org)
[![vitest](https://img.shields.io/badge/-vitest-6e9f18?style=flat\&logo=vitest\&logoColor=ffffff)](https://vitest.dev)
[![yarn](https://img.shields.io/badge/-yarn-2c8ebb?style=flat\&logo=yarn\&logoColor=ffffff)](https://yarnpkg.com)

**F**ile **S**ystem **T**ree.

---

**fst** is a specification for representing file systems as [abstract syntax trees][unist-syntax-tree].

It implements the [**unist**][unist] spec.

## Contents

- [Introduction](#introduction)
- [Where this specification fits](#where-this-specification-fits)
- [Types](#types)
- [Nodes (abstract)](#nodes-abstract)
- [`Node`](#node)
- [`Literal`](#literal)
- [`Parent`](#parent)
- [Nodes](#nodes)
- [`Directory`](#directory)
- [`File`](#file)
- [`Root`](#root)
- [Content model](#content-model)
- [`DirectoryContent`](#directorycontent)
- [`FstNode`](#fstnode)
- [Helpers](#helpers)
- [`AnyNode`](#anynode)
- [`AnyParent`](#anyparent)
- [`Child`](#child)
- [Glossary](#glossary)
- [List of utilities](#list-of-utilities)
- [Contribute](#contribute)

## Introduction

This document defines a format for representing file systems as abstract syntax trees. Development of fst started in
January 2025. This specification is written in a [TypeScript][]-like grammar.

### Where this specification fits

fst extends [unist][], a format for syntax trees, to benefit from its [ecosystem of utilities](#list-of-utilities).

## Types

TypeScript users can integrate `fst` type definitions into their project by installing the appropriate packages:

```sh
yarn add @flex-development/fst
```

## Nodes (abstract)

### `Node`

```ts
interface Node extends unist.Node {}
```

**Node** ([**unist.Node**][unist-node]) is a syntactic unit in fst syntax trees.

### `Literal`

```ts
interface Literal extends Node {
value: string | null | undefined
}
```

**Literal** represents an abstract interface in fst containing the smallest possible value.

### `Parent`

```ts
interface Parent extends unist.Parent {
children: Child[]
}
```

**Parent** ([**unist.Parent**][unist-parent]) represents an abstract interface in fst containing other nodes (said to
be [*children*][unist-child]).

Its content is limited to [file system content](#child).

## Nodes

### `Directory`

```ts
interface Directory extends Parent {
children: DirectoryContent[]
data?: DirectoryData | undefined
name: string
type: 'directory'
}
```

**Directory** ([**Parent**](#parent)) represents a parent directory or subdirectory. Its `name` is relative to its
parent directory.

**Directory** can be used in [**root**](#root) nodes, as well as other **directory** nodes. Its content model is
[**directory**](#directorycontent).

### `File`

```ts
interface File extends Literal {
data?: FileData | undefined
name: string
type: 'file'
value: string | null | undefined
}
```

**File** ([**Literal**](#literal)) represents a file.

File `name`s are relative to the parent directory. Unlike the name property of a [`ParsedPath`][parsedpath], file `name`s
include file extensions.

**File** can be used in [**directory**](#directory) and [**root**](#root) nodes. It cannot contain any children — it is
a [*leaf*][unist-leaf].

### `Root`

```ts
interface Root extends Parent {
children: DirectoryContent[]
data?: RootData | undefined
path: string
type: 'root'
}
```

**Root** ([**Parent**](#parent)) represents the root of a file system.

**Root** can be used as the [*root*][unist-root] of a [*tree*][unist-tree], never as a [*child*][unist-child]. It can
contain [**directory content**](#directorycontent).

## Content model

### `DirectoryContent`

```ts
type DirectoryContent = Directory | File
```

**Directory** content represents files and subdirectories in a parent [**directory**](#directory).

### `FstNode`

```ts
type FstNode = NodeMap[keyof NodeMap]
```

Registered fst nodes.

To register custom nodes, augment `NodeMap`:

```ts
declare module '@flex-development/fst' {
interface NodeMap {
customNode: CustomNode
}
}
```

## Helpers

### `AnyNode`

Union of nodes that can occur in fst.

**See also**: [`InclusiveDescendant`][inclusivedescendant]

```ts
type AnyNode = InclusiveDescendant
```

### `AnyParent`

Union of [*parents*][unist-parent] that are [*inclusive descendants*][descendant] of [`Root`](#root).

**See also**: [`Parents`][parents]

```ts
type AnyParent = Parents
```

### `Child`

Union of [*child*][unist-child] nodes that can occur in fst.

**See also**: [`Children`][children]

```ts
type Child = Children[number]
```

## Glossary

See the [unist glossary][unist-glossary] for more terms.

## List of utilities

See the [unist list of utilities][unist-utilities] for more utilities.

- [`fst-util-from-fs`][fst-util-from-fs] — create trees from file systems
- [`unist-util-builder`][unist-util-builder] — build trees
- [`unist-util-inspect`][unist-util-inspect] — inspect trees
- [`unist-util-visit`][unist-util-visit] — visit nodes using [preorder][] or [postorder][] traversal

## Contribute

See [`CONTRIBUTING.md`](CONTRIBUTING.md).

Ideas for new utilities and tools can be posted in [fst/ideas][fst-ideas].

This project has a [code of conduct](CODE_OF_CONDUCT.md). By interacting with this repository, organization, or
community you agree to abide by its terms.

[children]: https://github.com/flex-development/unist-util-types#childrent

[descendant]: https://github.com/syntax-tree/unist#descendant

[fst-ideas]: https://github.com/flex-development/fst/discussions/new?category=idea

[fst-util-from-fs]: https://github.com/flex-development/fst-util-from-fs

[inclusivedescendant]: https://github.com/flex-development/unist-util-types#inclusivedescendanttree-max-depth

[parents]: https://github.com/flex-development/unist-util-types#parentstree-child

[parsedpath]: https://github.com/flex-development/pathe/blob/main/src/interfaces/parsed-path.mts

[postorder]: https://github.com/syntax-tree/unist#postorder

[preorder]: https://github.com/syntax-tree/unist#preorder

[typescript]: https://www.typescriptlang.org

[unist-child]: https://github.com/syntax-tree/unist#child

[unist-glossary]: https://github.com/syntax-tree/unist#glossary

[unist-leaf]: https://github.com/syntax-tree/unist#leaf

[unist-node]: https://github.com/syntax-tree/unist#node

[unist-parent]: https://github.com/syntax-tree/unist#parent

[unist-root]: https://github.com/syntax-tree/unist#root

[unist-syntax-tree]: https://github.com/syntax-tree/unist#syntax-tree

[unist-tree]: https://github.com/syntax-tree/unist#tree

[unist-util-builder]: https://github.com/flex-development/unist-util-builder

[unist-util-inspect]: https://github.com/flex-development/unist-util-inspect

[unist-util-visit]: https://github.com/flex-development/unist-util-visit

[unist-utilities]: https://github.com/syntax-tree/unist#list-of-utilities

[unist]: https://github.com/syntax-tree/unist