@abw/badger-filesystem
TypeScript icon, indicating that this package has built-in type declarations

1.2.2 • Public • Published

Badger Filesystem

This provides a number of utility modules to make it easier working with directories and files in a node.js project.

Installation

Install badger-filesystem using your favourite package manager.

npm

npm add @abw/badger-filesystem

pnpm

pnpm add @abw/badger-filesystem

yarn

yarn add @abw/badger-filesystem

Documentation

Visit the website for documentation and examples.

Example

import { dir } from '@abw/badger-filesystem'

// a config directory
const config = dir('config');

// check it exists and create it if not
await config.mustExist({ create: true });

// create a JSON file in the directory
const hello = config.file('hello.json', { codec: 'json' });

// write some data to it
await hello.write({ message: 'Hello World!' });

// read data from it
const data = await hello.read();

Author

Andy Wardley https://github.com/abw

Package Sidebar

Install

npm i @abw/badger-filesystem

Weekly Downloads

10

Version

1.2.2

License

MIT

Unpacked Size

492 kB

Total Files

21

Last publish

Collaborators

  • abw