The Wayback Machine - https://web.archive.org/web/20200911165334/https://github.com/tradle/react-native-level-fs
Skip to content
master
Go to file
Code
This branch is 19 commits ahead, 3 commits behind mafintosh:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

README.md

react-native-level-fs

fs in react-native using level-filesystem and asyncstorage-down

npm install react-native-level-fs

Usage

To use simply require it and use it as you would fs

(package.json)

{
    ...
    "browser": {
       "fs": "react-native-level-fs" 
    }
    ...
}
var fs = require('fs');

fs.mkdir('/home', function() {
	fs.writeFile('/home/hello-world.txt', 'Hello world!\n', function() {
		fs.readFile('/home/hello-world.txt', 'utf-8', function(err, data) {
			console.log(data);
		});
	});
});

License

MIT

About

fs for the browser using level-filesystem and browserify

Resources

License

Packages

No packages published
You can’t perform that action at this time.