lightning-fs icon indicating copy to clipboard operation
lightning-fs copied to clipboard

A lean and fast 'fs' for the browser

Results 55 lightning-fs issues
Sort by recently updated
recently updated
newest added

This is a minor thing, but since I just spent an embarrassingly long amount of time puzzling over it, I figured I’d mention it. The documentation for `fs.writeFile` in the...

The default backend does not currently implement a destroy method to control the lifecycle

This is to make it easier to control the lifecycle of the filesystem

The FS should be able to tell what is the current name with which it was initialized the last time (And maybe the options). Right now the only way to...

First, thanks for your work on this project šŸ™‚ The current implementation is fairly slow with large repos, for instance vscode, which has around 5000 files or typescript, which has...

The [.prettierrc](https://github.com/isomorphic-git/lightning-fs/blob/main/.prettierrc) file specifies `semi: true` which [means that](https://prettier.io/docs/en/options.html#semicolons) a semi colon should finish each line, yet many files (for example [HttpBackend.js](https://github.com/isomorphic-git/lightning-fs/blob/main/src/HttpBackend.js)) do not have trailing semicolons, or only have...

An internal error was encountered in the Indexed Database server Screenshot: To reproduce, run the previous step once and this step twice from the [quickstart page](https://isomorphic-git.org/docs/en/quickstart). The first time works,...

I'm using `dist/lightning-fs.min.js` from `https://cdn.jsdelivr.net/` and it seems that path module is not exposed. It would be nice if you don't need to use browser-fs just to have `path.join` and...

This seems related to #23. If `oldFilepath` and `newFilepath` are equal, then the file is deleted; I'm not sure if this is the default node fs behavior, but we can...