Vadims Daleckis
Vadims Daleckis
- [ ] Page-like document layout - [ ] Top toolbar - [ ] Color picker - [ ] Inline selection toolbar - [ ] Block context menu - [...
- [ ] Normal text (paragraph) - [ ] Ability to specify alignment - [ ] Left - [ ] Center - [ ] Right - [ ] Justify -...
Progress on https://github.com/streamich/json-joy/issues/673
Create direct to download ESM bundle, publis to [https://esm.sh](https://esm.sh).
Add ability to check if preconditions are satisfied for any specific operation. In case operations do not arrive in causal order.
- [Implemen `FileHandle` API](https://github.com/streamich/memfs/blob/90a4bc6714911c43559a49cf9129153f27dd6c3d/src/node/FileHandle.ts#L6) - [ ] Cleanup - [ ] Maybe pass in `FsPromisesApi` instead of (in addition to) `FsCallbackApi` - [ ] Missing functionality - [ ] #734...
- [ ] [Implement `Dir`-compatible API](https://github.com/streamich/memfs/blob/90a4bc6714911c43559a49cf9129153f27dd6c3d/src/Dir.ts#L10) - [ ] [Docs](https://nodejs.org/api/fs.html#class-fsdir) - [ ] [Implementation](https://github.com/nodejs/node/blob/a627a999f022d05403af6b53395f7cac7ee89840/lib/internal/fs/dir.js) - [ ] Cleanup - [ ] Remove from `Dir` class helper functions - [ ]...
- Implement `cp` APIs - [ ] [`cp`](https://github.com/nodejs/node/tree/a627a999f022d05403af6b53395f7cac7ee89840/lib/internal/fs/cp) - [ ] [`cpSync`](https://github.com/nodejs/node/tree/a627a999f022d05403af6b53395f7cac7ee89840/lib/internal/fs/cp) - [ ] `promises.cp`
[`memfs`](https://github.com/streamich/memfs) now supports File System Access API, which can be run on top of Node's real `fs` file system or on top of `memfs` in-memory file system. The File System...
Add ability to identify a file by its unique ID, regardless if the file is moved or was renamed. Store a unique ID (which never changes) in file metadata. Expose...