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

@loom-io/fs

v0.6.1

Published

A file system wrapper for Node.js and Bun

Downloads

22

Readme

loom-io

codecov

[!CAUTION] This is deprecated. Everything is restructured and split in multiple modules. There is a bundle for you @loom-io/base-fs which should be compatible. To use the new modules take a look at the new documentation of loom-io

Currently this library helps to read files and directories. There is also planned to offer functions to edit and load sources like git

How to

The library offers to read a dir or file from filesystem. File content could be read and converted to json. To support more then .json files it is possible to add plugin. Currently files with extension yml, yaml and json are convert able to json by default.

import Loom from "@loom-io/fs";

const file = Loom.file("./some/file.json");

// the file could be read as plain txt or json
const str = await file.text();
const json = await file.json();
const buffer = await file.plain();

// get file size
const size = await file.getSize("MB"); // B KB MB GB TB ... YB

// read line by line or search in large files without loading the file into heap memory (see below for more details)
const reader = await file.reader();
const { start, end } = (await reader.search("cotton-coding")).meta;
await reader.close();

// If you want to have the directory just call
file.parent; // it is the same as for a directory

// Register a plugin, look below to get more information on plugins
Loom.register(/*some plugin*/);

By default the system can read json and yml and convert it to json. To Support more, you can write PlugIns and adapted them.

Reading a dir Works similar.

import Loom, {type LoomFile, type Directory} from '@loom-io/fs'

const root = Loom.root(); // Returns a directory object of the project root, to call the system root call Loom.dir('/)
const dir = Loom.dir('some/dir');

// here you have functions to list the content of the dir and get files
const files  = await dir.files(true);  // return all files in the directory and it's subdirectories as type File.

for(let file of files) {
  const json = file.json();
  // do something with the content
}

const list = await dir.list() // returns a iterable to get Files and Directories

for(let el of list) {
  if(el instanceOf LoomFile) { // check if it is a File
    console.log(await el.text()); // do some Stuff with the file content
  } else (el instanceOf Directory) {
    console.log((await el.list()).length) // in the other case it is an directory and you can go on working with it
  }
}

// to get the parent of a directory
if(dir.parent !== undefined) {
  await dir.parent.list()
}

// to select a specific sub directory call
dir.subDir('sub/path'); // this is not validated and only throws an arrow an calling list or files

Lists

A list Object is returned if you call list or files of the directory object. The list Object gives you the ability to iterate offer the results, get them as an Array or filter them.

const arrayOfFilesAndDirectories = dir.list().asArray();

//Ready type save filter
const listOfFiles = (await dir.list()).only("files");
const listOfDirs = (await dir.list()).only("dirs");

//own filter for more advanced. The callback function gets an DirentWrapper Object which have some readonly attributes, you can get also the dirent or the dir.
(await dir.list()).filter<LoomFile>((el) => el.name.endsWith(".spec.yml"));
(await dir.list()).filter<Directory>((el) => el.isDirectory());

// see more examples for iteration above
for (let file of await dir.files()) {
	const json = file.json();
	// do something with the content
}

Reader

The reader makes it possible to search or read lines in files without loading them completely. It is your decision if you do this from the top or the end of a file.

import Loom from "loom-io/fs";

const file = Loom.file("some/file/readable.md");
const reader = await file.reader();

const result = await reader.searchLast("a better world");

if (result !== undefined) {
	do {
		const { start, end } = result.meta;
		//do something with meta data e.g. read the result + one symbol before and after
		const length = end - start;
		const data = await reader.read(start - 1, length + 1);
	} while (await result.prev());
}

const lineResult = await reader.firstLine();

do {
	const line = await lineResult.read();
	//do something with the line
} while (await lineResult.next());

// Do not forget to close the reader
await reader.close();

Plugins

To handle and covert more file types to json loom-io/fs allow to register plugins. Currently there is only support for one type of Plugin

// Plugin type to convert file content to json
export type LoomFSFileConverter = {
	type: PLUGIN_TYPE.FILE_CONVERTER;
	extensions: string[];
	parse<T = unknown>(content: string): T;
	stringify<T = unknown>(content: T): string;
};

Currently there are two plugins already included, to convert yml and json files to json.

import { PLUGIN_TYPE, type LoomFSFileConverter } from "loom-io/fs";

//example for the plugin to convert json strings.
export default {
	type: PLUGIN_TYPE.FILE_CONVERTER,
	extensions: ["json"],
	parse: JSON.parse,
	stringify: JSON.stringify,
} satisfies LoomFSFileConverter;

Plugins could be registered with Loom.register

import Loom from "loom-io/fs";
import mdPlugin from "./link/to/plugin";

Loom.register(mdPlugin);