0.0.4 • Published 8 years ago

clefs-localstorage v0.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

clefs-localstorage

A clefs layer backed by localstorage-fs.

Getting started

Installing

	npm i -S clefs clefs-localstorage

Usage

	import clefs from 'clefs/browser';
	import localstorage from 'clefs-localstorage';

	const fs = clefs([localstorage]);
	const fileContents = await fs.readFile('/path/to/file.txt');
	console.log(fileContents);