@abw/badger-filesystem

1.0.6 • 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

27

Version

1.0.6

License

MIT

Unpacked Size

79.6 kB

Total Files

7

Last publish

Collaborators

  • abw