lightning-fs
lightning-fs copied to clipboard
A lean and fast 'fs' for the browser
Bumps [qs](https://github.com/ljharb/qs) from 6.2.3 to 6.2.4. Changelog Sourced from qs's changelog. 6.2.4 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and an array...
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...
Bumps [engine.io](https://github.com/socketio/engine.io) to 6.2.1 and updates ancestor dependency [karma](https://github.com/karma-runner/karma). These dependencies need to be updated together. Updates `engine.io` from 3.1.5 to 6.2.1 Release notes Sourced from engine.io's releases. 6.2.1 :warning:...
Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.1.0 to 1.4.2. Release notes Sourced from loader-utils's releases. v1.4.2 1.4.2 (2022-11-11) Bug Fixes ReDoS problem (#226) (17cbf8f) v1.4.1 1.4.1 (2022-11-07) Bug Fixes security problem (#220) (4504e34)...
Bumps [socket.io-parser](https://github.com/socketio/socket.io-parser) to 4.2.1 and updates ancestor dependency [karma](https://github.com/karma-runner/karma). These dependencies need to be updated together. Updates `socket.io-parser` from 3.1.3 to 4.2.1 Release notes Sourced from socket.io-parser's releases. 4.2.1 Bug...
1. Remove constructor Interfaces shouldn't specify constructor types. Moreover, I'm pretty sure [it's not possible to implement this interface](https://stackoverflow.com/a/46977622). 2. Provided correct argument/return value types to the interface methods. 3....
Fixing #126 1. Removed the `constructor(...)` method from the interface. When user provides a custom `db` instance, the constructor is never invoked by the lightning-fs so constraining it in the...
I noticed that current `IDB` interface had two errors: 1. The constructor type was typed as a regular function 2. The `readFile` was mis-typed as `loadFile` `/lightning-fs/index.d.ts` ```diff export interface...
It looks like the fairly critical `fs.existsSync` is missing from the set of available functions, which makes otherwise "simple if check" code a "try/catch with dangling `let` variables" mess. Could...
Add a `cp` command, based on nodejs cp. https://nodejs.org/api/fs.html ``` fsPromises.cp(src, dest[, options]) ``` with the `recursive` option. To be compatible with both [ZenFS](https://zenfs.dev/core/) and nodejs. (Or perhaps lightning-fs is...