Memfs Versions Save

JavaScript file system utilities

v4.2.2

8 months ago

4.2.2 (2023-09-15)

Bug Fixes

v4.2.1

9 months ago

4.2.1 (2023-08-07)

Bug Fixes

  • don't error when watched directory gets renamed (#939) (b431b08)

v4.2.0

11 months ago

memfs v4 has been released, install 4.2.0 NPM package.

File System Access API

memfs added adapters for File System Access (FAS) API, which is a file system API available in browsers. FSA can write to a real user folder, which user picks; or without any permissions can write to a virtual file system, called OPFS (Origin Private File System). memfs implements adapters, which:

  • Construct a Node's fs-like API out of the FSA API.
    • In browser, support for synchronous fs methods is also available using a WebWorker.
  • Also, the other way around, memfs can provide FSA API on top of any fs-like file system.

Other notable changes

  • In-memory fs changes
    • A number of in-memory fs bugs were fixed.
    • Type interfaces of methods and options objects for in-memory fs were improved.
    • mkdirp and mkdripSync were removed, they were deprecated before. (You can pass the "recursive" flag to mkdir and mkdirSync, instead.)
    • Many re-usable Node.js fs utilities now live in the /src/node folder.
    • Promises API methods are now bound by default to their this object, just like in native fs module.
  • crudfs and casfs
    • crudfs implementation on top of Node fs was added.
    • crudfs implementation on top of File System Access API was added.
    • casfs implementation on top of crudfs was added.
  • print utility was added which allows to recursively print a directory tree to terminal.
  • snapshot utility was added which allows to create recursive binary snapshots of folders and then load them back into some folder.
  • The /demo folder now contains multiple Webpack demos.
  • Build changes and deprecations
    • TypeScript was upgraded from version 4 to 5.
    • tslib is now included as peer dependency, instead of TypeScript helpers being emitted into distributable.
    • TypeScript build target of the distributable is no es2017, instead of previously es5.
    • The library is now tested on Node v18+ versions.
    • BigInt shim is no longer shipped, memfs will rely on the BigInt provided by the JavaScript environment. You can shim that global, if necessary.
    • fs-monkey dependency was removed.
  • New features in this major release are marked as experimental, which means those APIs are in preview, their public interface may have breaking changes even across minor releases.
  • CircleCI was removed, now GitHub Actions power all builds and releases.
  • The next branch was tested, which deploys pre-releases.

Bug Fixes

* ๐Ÿ› add support for unknown nodes (77786f1)
* ๐Ÿ› allow readin into various kinds of buffers (361812d)
* ๐Ÿ› allow readin into various kinds of buffers (e9c70e9)
* ๐Ÿ› allow to seek in file (c04895b)
* ๐Ÿ› allow to seek in file (b363689)
* ๐Ÿ› correctly handle directory paths (ea909e8)
* ๐Ÿ› do not allow empty children names (f014fd8)
* ๐Ÿ› do not allow empty children names (43da1d6)
* ๐Ÿ› handle root folder better (89bbffd)
* ๐Ÿ› handle root folder better (76de780)
* ๐Ÿ› improve file opening and closing logic (403c271)
* ๐Ÿ› throw "ENOENT" and "ENOTDIR" when folder or file 404 (5de4faa)
* ๐Ÿ› throw "ENOENT" and "ENOTDIR" when folder or file 404 (ddd5d56)

Features

  • ๐ŸŽธ add .toTree() to Volume (2d5c4cb)
  • ๐ŸŽธ add .truncate() method (038ab36)
  • ๐ŸŽธ add .truncate() method (085335c)
  • ๐ŸŽธ add ability to close files (0db56be)
  • ๐ŸŽธ add ability to close files (d3828a8)
  • ๐ŸŽธ add ability to create sub directories (8f15bd9)
  • ๐ŸŽธ add ability to create sub directories (528c807)
  • ๐ŸŽธ add ability to remove all files (76cabc7)
  • ๐ŸŽธ add ability to remove all files (566e29b)
  • ๐ŸŽธ add appendFileSync() method (57192fe)
  • ๐ŸŽธ add appendFileSync() method (27411e4)
  • ๐ŸŽธ add basenem() utility (8b27695)
  • ๐ŸŽธ add basenem() utility (43354e5)
  • ๐ŸŽธ add binary serialization to snapshots (c1cd615)
  • ๐ŸŽธ add copyFile() method (de2bb0a)
  • ๐ŸŽธ add copyFile() method (5e207c4)
  • ๐ŸŽธ add copyFileSync() method (7e0137c)
  • ๐ŸŽธ add copyFileSync() method (5fc1bac)
  • ๐ŸŽธ add createSwapFile() method (dfdb908)
  • ๐ŸŽธ add createSwapFile() method (b07ce79)
  • ๐ŸŽธ add crudfs types (18c0658)
  • ๐ŸŽธ add existsSync() method (0492a98)
  • ๐ŸŽธ add existsSync() method (073ec6b)
  • ๐ŸŽธ add fstatSync() method (f13ddb7)
  • ๐ŸŽธ add fstatSync() method (6b1597a)
  • ๐ŸŽธ add initial writing implementation (2f9542c)
  • ๐ŸŽธ add initial writing implementation (6a50382)
  • ๐ŸŽธ add integrity check on read (710eb2f)
  • ๐ŸŽธ add json encoding for snapshots (41f9b8c)
  • ๐ŸŽธ add lstat() and fstat() methods (ce5dd5e)
  • ๐ŸŽธ add lstat() and fstat() methods (e147d58)
  • ๐ŸŽธ add missing callback API methods and some sync API ones (956533a)
  • ๐ŸŽธ add missing promises API types (f6727f3)
  • ๐ŸŽธ add missing synchronous method types (ac38b5d)
  • ๐ŸŽธ add mkdirSync() method (57f386b)
  • ๐ŸŽธ add mkdirSync() method (bcad970)
  • ๐ŸŽธ add mkdtempSync() method (1ac2df4)
  • ๐ŸŽธ add mkdtempSync() method (68033dd)
  • ๐ŸŽธ add options to promises.rmdir() method (ce268bb)
  • ๐ŸŽธ add options to promises.rmdir() method (0628d56)
  • ๐ŸŽธ add pathToLocation() utility (8e0136a)
  • ๐ŸŽธ add pathToLocation() utility (cb92a99)
  • ๐ŸŽธ add read/write mode separation (b4b6fcb)
  • ๐ŸŽธ add read/write mode separation (60a65c1)
  • ๐ŸŽธ add readdirSync() method (2178a50)
  • ๐ŸŽธ add readdirSync() method (3689abd)
  • ๐ŸŽธ add readlinkSync() method (f398908)
  • ๐ŸŽธ add readlinkSync() method (8d243a0)
  • ๐ŸŽธ add readSync() method (31383a8)
  • ๐ŸŽธ add readSync() method (3729cd0)
  • ๐ŸŽธ add realpathSync() method (f9a3cbe)
  • ๐ŸŽธ add realpathSync() method (75890e0)
  • ๐ŸŽธ add renameSync() method (a1674e4)
  • ๐ŸŽธ add renameSync() method (5b1cd63)
  • ๐ŸŽธ add rm() method (239437d)
  • ๐ŸŽธ add rm() method (29a7dc8)
  • ๐ŸŽธ add rmdirSync() method (59ccf3c)
  • ๐ŸŽธ add rmdirSync() method (695b62a)
  • ๐ŸŽธ add rmSync() method (a39e9a2)
  • ๐ŸŽธ add rmSync() method (aa9acb3)
  • ๐ŸŽธ add snapshot creation utilities (9fc8f13)
  • ๐ŸŽธ add some common objects (b68ea2a)
  • ๐ŸŽธ add some common objects (c89744d)
  • ๐ŸŽธ add sumlink printing support (1850dae)
  • ๐ŸŽธ add sync api (29c035a)
  • ๐ŸŽธ add sync api (16d6600)
  • ๐ŸŽธ add timeout to spin lock (1e2fc72)
  • ๐ŸŽธ add timeout to spin lock (48e8e74)
  • ๐ŸŽธ add truncateSync() and ftruncateSync() methods (4caf28b)
  • ๐ŸŽธ add truncateSync() and ftruncateSync() methods (2b77619)
  • ๐ŸŽธ add typed array view support to volume (a8bee73)
  • ๐ŸŽธ add typed array view support to volume (7c8439f)
  • ๐ŸŽธ add unlinkSync() method (4b3444d)
  • ๐ŸŽธ add unlinkSync() method (417f911)
  • ๐ŸŽธ add writev() method (17b0446)
  • ๐ŸŽธ add writev() method (8190bfd)
  • ๐ŸŽธ create FSA types folder (c153506)
  • ๐ŸŽธ create FSA types folder (bb0c75a)
  • ๐ŸŽธ create Node fs api tyeps (27fd08a)
  • ๐ŸŽธ create Node fs api tyeps (4db1321)
  • ๐ŸŽธ expose FSA from index file (6865a05)
  • ๐ŸŽธ expose FSA from index file (77696f5)
  • ๐ŸŽธ implement .del() method (9a7fd37)
  • ๐ŸŽธ implement .drop() method (1b893a2)
  • ๐ŸŽธ implement .get() method (63aacb6)
  • ๐ŸŽธ implement .getDirectoryHandle() method (b6b026a)
  • ๐ŸŽธ implement .getDirectoryHandle() method (090980c)
  • ๐ŸŽธ implement .getFile() method (b8601cc)
  • ๐ŸŽธ implement .getFile() method (17015a3)
  • ๐ŸŽธ implement .getFileHandle() method (71567c9)
  • ๐ŸŽธ implement .getFileHandle() method (40bdc13)
  • ๐ŸŽธ implement .isSameEntry() method (f18d91e)
  • ๐ŸŽธ implement .isSameEntry() method (438806b)
  • ๐ŸŽธ implement .list() method (4a064cf)
  • ๐ŸŽธ implement .mkdir method (2623049)
  • ๐ŸŽธ implement .mkdir method (be1525a)
  • ๐ŸŽธ implement .mkdtemp() method (cd54e9b)
  • ๐ŸŽธ implement .mkdtemp() method (2db4cd0)
  • ๐ŸŽธ implement .removeEntry() method (48617aa)
  • ๐ŸŽธ implement .removeEntry() method (dca57a2)
  • ๐ŸŽธ implement .resolve() method (bf47b96)
  • ๐ŸŽธ implement .resolve() method (9d5669c)
  • ๐ŸŽธ implement .values() and .entries() (f13de3b)
  • ๐ŸŽธ implement .values() and .entries() (177010a)
  • ๐ŸŽธ implement .write() for FSA (8226541)
  • ๐ŸŽธ implement .write() for FSA (6a2fa2d)
  • ๐ŸŽธ implement access() method (0a43a1b)
  • ๐ŸŽธ implement access() method (c72390b)
  • ๐ŸŽธ implement accessSync() method (accebdb)
  • ๐ŸŽธ implement accessSync() method (719a19f)
  • ๐ŸŽธ implement async verions of snapshotting (18912bf)
  • ๐ŸŽธ implement basic readdir (898e221)
  • ๐ŸŽธ implement basic readdir (685bc7e)
  • ๐ŸŽธ implement basic rename() method, only for files (169662a)
  • ๐ŸŽธ implement basic rename() method, only for files (4769314)
  • ๐ŸŽธ implement basic state() method (425cad7)
  • ๐ŸŽธ implement basic state() method (4039d64)
  • ๐ŸŽธ implement CAS storage (33ddbcc)
  • ๐ŸŽธ implement closeSync() method (24841fa)
  • ๐ŸŽธ implement closeSync() method (646efaf)
  • ๐ŸŽธ implement crudfs .put() method (505dc20)
  • ๐ŸŽธ implement crudfs on top of fs (cb7ac4d)
  • ๐ŸŽธ implement Dirent listings (03e60d0)
  • ๐ŸŽธ implement Dirent listings (5d6f976)
  • ๐ŸŽธ implement exists() method (615e88f)
  • ๐ŸŽธ implement exists() method (0753937)
  • ๐ŸŽธ implement first version of readFile() method (e046128)
  • ๐ŸŽธ implement first version of readFile() method (629f22a)
  • ๐ŸŽธ implement first version of worker (3662003)
  • ๐ŸŽธ implement first version of worker (caf8394)
  • ๐ŸŽธ implement FSA ReadStream (bc50fc5)
  • ๐ŸŽธ implement FSA ReadStream (53784d9)
  • ๐ŸŽธ implement info() method (eea9215)
  • ๐ŸŽธ implement initial version of .open() method (b3983df)
  • ๐ŸŽธ implement initial version of .open() method (cb363b5)
  • ๐ŸŽธ implement initial version of appendFile() method (616be8d)
  • ๐ŸŽธ implement initial version of appendFile() method (65580aa)
  • ๐ŸŽธ implement initial version of writeFile() method (80e8499)
  • ๐ŸŽธ implement initial version of writeFile() method (e2b2bfd)
  • ๐ŸŽธ implement keys() method (33f9af0)
  • ๐ŸŽธ implement keys() method (b8e8a4c)
  • ๐ŸŽธ implement openSync() method (8ecac69)
  • ๐ŸŽธ implement openSync() method (4b7eddd)
  • ๐ŸŽธ implement read() method (33bea4b)
  • ๐ŸŽธ implement read() method (7357c14)
  • ๐ŸŽธ implement readFileSync() method (3a1b737)
  • ๐ŸŽธ implement readFileSync() method (2a07e34)
  • ๐ŸŽธ implement readFileSync() method (953d276)
  • ๐ŸŽธ implement readFileSync() method (bb803e2)
  • ๐ŸŽธ implement realpath() method (458a7b2)
  • ๐ŸŽธ implement realpath() method (99b12dc)
  • ๐ŸŽธ implement rmdir() method (c06734b)
  • ๐ŸŽธ implement rmdir() method (973af0a)
  • ๐ŸŽธ implement sync messenger (1c0bd59)
  • ๐ŸŽธ implement sync messenger (d221870)
  • ๐ŸŽธ implement sync write method (3017ecd)
  • ๐ŸŽธ implement sync write method (22047da)
  • ๐ŸŽธ implement toTreeSync() method (09c9770)
  • ๐ŸŽธ implement truncation (af8452e)
  • ๐ŸŽธ implement truncation (d4469d1)
  • ๐ŸŽธ implement unlink() method (e11a383)
  • ๐ŸŽธ implement unlink() method (6bd3e75)
  • ๐ŸŽธ implement writeSync() method (7a2fced)
  • ๐ŸŽธ implement writeSync() method (12a8b3f)
  • ๐ŸŽธ improve mkdir method (e6dd59e)
  • ๐ŸŽธ improve mkdir method (c393f6c)
  • ๐ŸŽธ improve read stream interfaces (7e1a844)
  • ๐ŸŽธ improve read stream interfaces (6d5de0c)
  • ๐ŸŽธ improve stat method (505a1d9)
  • ๐ŸŽธ improve stat method (c6eeab4)
  • ๐ŸŽธ improve write stream, better flag handling (531f2a7)
  • ๐ŸŽธ improve write stream, better flag handling (7b9e0a3)
  • ๐ŸŽธ improve writing at offset logic (71b6afc)
  • ๐ŸŽธ improve writing at offset logic (392932a)
  • ๐ŸŽธ improve writing to file (1de0e06)
  • ๐ŸŽธ improve writing to file (3edcac1)
  • ๐ŸŽธ include "writeSync" method for sync writer (b267f78)
  • ๐ŸŽธ include "writeSync" method for sync writer (b006b2d)
  • ๐ŸŽธ introduce FSA context (f603262)
  • ๐ŸŽธ introduce FSA context (b696e09)
  • ๐ŸŽธ make basic WriteStream work (69281ff)
  • ๐ŸŽธ make basic WriteStream work (c109af1)
  • ๐ŸŽธ make promises methods bound (3010141)
  • ๐ŸŽธ make statSync() resolve the path correctly (0d81728)
  • ๐ŸŽธ make statSync() resolve the path correctly (7801533)
  • ๐ŸŽธ normalize adapter rpc (16ce2cf)
  • ๐ŸŽธ normalize adapter rpc (96b8374)
  • ๐ŸŽธ progress on writable stream (a568afd)
  • ๐ŸŽธ progress on writable stream (9900423)
  • ๐ŸŽธ setup fsa to node utility (50d2a1e)
  • ๐ŸŽธ setup fsa to node utility (5fa0d61)
  • ๐ŸŽธ setup node-to-fsa folder (a4268c6)
  • ๐ŸŽธ setup node-to-fsa folder (16e78e3)
  • ๐ŸŽธ setup NodeCrud implementation (39073ce)
  • ๐ŸŽธ setup webfs (68f0014)
  • ๐ŸŽธ setup webfs (99c915f)
  • ๐ŸŽธ standardize message contents (b3254f6)
  • ๐ŸŽธ standardize message contents (c254dc7)
  • ๐ŸŽธ start synchronous file handle implementation (f9b0f73)
  • ๐ŸŽธ start synchronous file handle implementation (d05c407)
  • ๐ŸŽธ start WriteStream implementation (5971c39)
  • ๐ŸŽธ start WriteStream implementation (32e13a8)
  • ๐ŸŽธ throw exception on closed files (7adff27)
  • ๐ŸŽธ throw exception on closed files (5119b8f)
  • ๐ŸŽธ track number of written bytes (b80f7b7)
  • ๐ŸŽธ track number of written bytes (7a65daa)
  • ๐ŸŽธ write through a swap file (84cecec)
  • ๐ŸŽธ write through a swap file (5134766)

Full Changelog: https://github.com/streamich/memfs/compare/v3.6.0...v4.2.0

v4.1.0-next.5

11 months ago

4.1.0-next.5 (2023-06-25)

Bug Fixes

  • ๐Ÿ› add support for unknown nodes (77786f1)

Features

  • ๐ŸŽธ add binary serialization to snapshots (c1cd615)
  • ๐ŸŽธ add json encoding for snapshots (41f9b8c)
  • ๐ŸŽธ add snapshot creation utilities (9fc8f13)
  • ๐ŸŽธ implement async verions of snapshotting (18912bf)

v4.1.0-next.4

11 months ago

4.1.0-next.4 (2023-06-25)

Features

  • ๐ŸŽธ add .toTree() to Volume (2d5c4cb)
  • ๐ŸŽธ add sumlink printing support (1850dae)
  • ๐ŸŽธ implement toTreeSync() method (09c9770)

v4.1.0-next.3

11 months ago

4.1.0-next.3 (2023-06-22)

Bug Fixes

  • ๐Ÿ› correctly handle directory paths (ea909e8)
  • ๐Ÿ› improve file opening and closing logic (403c271)

Features

  • ๐ŸŽธ add missing callback API methods and some sycn API ones (956533a)
  • ๐ŸŽธ add missing promisees API types (f6727f3)
  • ๐ŸŽธ add missing synchronous method types (ac38b5d)
  • ๐ŸŽธ implement crudfs on top of fs (cb7ac4d)
  • ๐ŸŽธ make promises methods bound (3010141)
  • ๐ŸŽธ setup NodeCrud implementation (39073ce)

v4.1.0-next.2

11 months ago

4.1.0-next.2 (2023-06-21)

Features

  • ๐ŸŽธ add integrity check on read (710eb2f)
  • ๐ŸŽธ implement CAS storage (33ddbcc)

v4.1.0-next.1

11 months ago

4.1.0-next.1 (2023-06-21)

Bug Fixes

  • ๐Ÿ› allow readin into various kinds of buffers (361812d)
  • ๐Ÿ› allow readin into various kinds of buffers (e9c70e9)
  • ๐Ÿ› allow to seek in file (c04895b)
  • ๐Ÿ› allow to seek in file (b363689)
  • ๐Ÿ› do not allow empty children names (f014fd8)
  • ๐Ÿ› do not allow empty children names (43da1d6)
  • ๐Ÿ› handle root folder better (89bbffd)
  • ๐Ÿ› handle root folder better (76de780)
  • ๐Ÿ› throw "ENOENT" and "ENOTDIR" when folder or file 404 (5de4faa)
  • ๐Ÿ› throw "ENOENT" and "ENOTDIR" when folder or file 404 (ddd5d56)

Features

  • ๐ŸŽธ add .truncate() method (038ab36)
  • ๐ŸŽธ add .truncate() method (085335c)
  • ๐ŸŽธ add ability to close files (0db56be)
  • ๐ŸŽธ add ability to close files (d3828a8)
  • ๐ŸŽธ add ability to create sub directories (8f15bd9)
  • ๐ŸŽธ add ability to create sub directories (528c807)
  • ๐ŸŽธ add ability to remove all files (76cabc7)
  • ๐ŸŽธ add ability to remove all files (566e29b)
  • ๐ŸŽธ add appendFileSync() method (57192fe)
  • ๐ŸŽธ add appendFileSync() method (27411e4)
  • ๐ŸŽธ add basenem() utility (8b27695)
  • ๐ŸŽธ add basenem() utility (43354e5)
  • ๐ŸŽธ add copyFile() method (de2bb0a)
  • ๐ŸŽธ add copyFile() method (5e207c4)
  • ๐ŸŽธ add copyFileSync() method (7e0137c)
  • ๐ŸŽธ add copyFileSync() method (5fc1bac)
  • ๐ŸŽธ add createSwapFile() method (dfdb908)
  • ๐ŸŽธ add createSwapFile() method (b07ce79)
  • ๐ŸŽธ add crudfs types (18c0658)
  • ๐ŸŽธ add existsSync() method (0492a98)
  • ๐ŸŽธ add existsSync() method (073ec6b)
  • ๐ŸŽธ add fstatSync() method (f13ddb7)
  • ๐ŸŽธ add fstatSync() method (6b1597a)
  • ๐ŸŽธ add initial writign implementation (2f9542c)
  • ๐ŸŽธ add initial writign implementation (6a50382)
  • ๐ŸŽธ add lstat() and fstat() methods (ce5dd5e)
  • ๐ŸŽธ add lstat() and fstat() methods (e147d58)
  • ๐ŸŽธ add mkdirSync() method (57f386b)
  • ๐ŸŽธ add mkdirSync() method (bcad970)
  • ๐ŸŽธ add mkdtempSync() method (1ac2df4)
  • ๐ŸŽธ add mkdtempSync() method (68033dd)
  • ๐ŸŽธ add options to promises.rmdir() method (ce268bb)
  • ๐ŸŽธ add options to promises.rmdir() method (0628d56)
  • ๐ŸŽธ add pathToLocation() utility (8e0136a)
  • ๐ŸŽธ add pathToLocation() utility (cb92a99)
  • ๐ŸŽธ add read/write mode separation (b4b6fcb)
  • ๐ŸŽธ add read/write mode separation (60a65c1)
  • ๐ŸŽธ add readdirSync() method (2178a50)
  • ๐ŸŽธ add readdirSync() method (3689abd)
  • ๐ŸŽธ add readlinkSync() method (f398908)
  • ๐ŸŽธ add readlinkSync() method (8d243a0)
  • ๐ŸŽธ add readSync() method (31383a8)
  • ๐ŸŽธ add readSync() method (3729cd0)
  • ๐ŸŽธ add realpathSync() method (f9a3cbe)
  • ๐ŸŽธ add realpathSync() method (75890e0)
  • ๐ŸŽธ add renameSync() method (a1674e4)
  • ๐ŸŽธ add renameSync() method (5b1cd63)
  • ๐ŸŽธ add rm() method (239437d)
  • ๐ŸŽธ add rm() method (29a7dc8)
  • ๐ŸŽธ add rmdirSync() method (59ccf3c)
  • ๐ŸŽธ add rmdirSync() method (695b62a)
  • ๐ŸŽธ add rmSync() method (a39e9a2)
  • ๐ŸŽธ add rmSync() method (aa9acb3)
  • ๐ŸŽธ add some common objects (b68ea2a)
  • ๐ŸŽธ add some common objects (c89744d)
  • ๐ŸŽธ add sync api (29c035a)
  • ๐ŸŽธ add sync api (16d6600)
  • ๐ŸŽธ add timeout to spin lock (1e2fc72)
  • ๐ŸŽธ add timeout to spin lock (48e8e74)
  • ๐ŸŽธ add truncateSync() and ftruncateSync() methods (4caf28b)
  • ๐ŸŽธ add truncateSync() and ftruncateSync() methods (2b77619)
  • ๐ŸŽธ add typed array view support to volume (a8bee73)
  • ๐ŸŽธ add typed array view support to volume (7c8439f)
  • ๐ŸŽธ add unlinkSync() method (4b3444d)
  • ๐ŸŽธ add unlinkSync() method (417f911)
  • ๐ŸŽธ add writev() method (17b0446)
  • ๐ŸŽธ add writev() method (8190bfd)
  • ๐ŸŽธ create FSA types folder (c153506)
  • ๐ŸŽธ create FSA types folder (bb0c75a)
  • ๐ŸŽธ create Node fs api tyeps (27fd08a)
  • ๐ŸŽธ create Node fs api tyeps (4db1321)
  • ๐ŸŽธ explose FSA from index file (6865a05)
  • ๐ŸŽธ explose FSA from index file (77696f5)
  • ๐ŸŽธ implement .del() method (9a7fd37)
  • ๐ŸŽธ implement .drop() method (1b893a2)
  • ๐ŸŽธ implement .get() method (63aacb6)
  • ๐ŸŽธ implement .getDirectoryHandle() method (b6b026a)
  • ๐ŸŽธ implement .getDirectoryHandle() method (090980c)
  • ๐ŸŽธ implement .getFile() method (b8601cc)
  • ๐ŸŽธ implement .getFile() method (17015a3)
  • ๐ŸŽธ implement .getFileHandle() method (71567c9)
  • ๐ŸŽธ implement .getFileHandle() method (40bdc13)
  • ๐ŸŽธ implement .isSameEntry() method (f18d91e)
  • ๐ŸŽธ implement .isSameEntry() method (438806b)
  • ๐ŸŽธ implement .list() method (4a064cf)
  • ๐ŸŽธ implement .mkdir method (2623049)
  • ๐ŸŽธ implement .mkdir method (be1525a)
  • ๐ŸŽธ implement .mkdtemp() method (cd54e9b)
  • ๐ŸŽธ implement .mkdtemp() method (2db4cd0)
  • ๐ŸŽธ implement .removeEntry() method (48617aa)
  • ๐ŸŽธ implement .removeEntry() method (dca57a2)
  • ๐ŸŽธ implement .resolve() method (bf47b96)
  • ๐ŸŽธ implement .resolve() method (9d5669c)
  • ๐ŸŽธ implement .values() and .entries() (f13de3b)
  • ๐ŸŽธ implement .values() and .entries() (177010a)
  • ๐ŸŽธ implement .write() for FSA (8226541)
  • ๐ŸŽธ implement .write() for FSA (6a2fa2d)
  • ๐ŸŽธ implement access() method (0a43a1b)
  • ๐ŸŽธ implement access() method (c72390b)
  • ๐ŸŽธ implement accessSync() method (accebdb)
  • ๐ŸŽธ implement accessSync() method (719a19f)
  • ๐ŸŽธ implement basic readdir (898e221)
  • ๐ŸŽธ implement basic readdir (685bc7e)
  • ๐ŸŽธ implement basic rename() method, only for files (169662a)
  • ๐ŸŽธ implement basic rename() method, only for files (4769314)
  • ๐ŸŽธ implement basic state() method (425cad7)
  • ๐ŸŽธ implement basic state() method (4039d64)
  • ๐ŸŽธ implement closeSync() method (24841fa)
  • ๐ŸŽธ implement closeSync() method (646efaf)
  • ๐ŸŽธ implement crudfs .put() method (505dc20)
  • ๐ŸŽธ implement Dirent listings (03e60d0)
  • ๐ŸŽธ implement Dirent listings (5d6f976)
  • ๐ŸŽธ implement exists() method (615e88f)
  • ๐ŸŽธ implement exists() method (0753937)
  • ๐ŸŽธ implement first version of readFile() method (e046128)
  • ๐ŸŽธ implement first version of readFile() method (629f22a)
  • ๐ŸŽธ implement first version of worker (3662003)
  • ๐ŸŽธ implement first version of worker (caf8394)
  • ๐ŸŽธ implement FSA ReadStream (bc50fc5)
  • ๐ŸŽธ implement FSA ReadStream (53784d9)
  • ๐ŸŽธ implement info() method (eea9215)
  • ๐ŸŽธ implement initial version of .open() mehtod (b3983df)
  • ๐ŸŽธ implement initial version of .open() mehtod (cb363b5)
  • ๐ŸŽธ implement initial version of appendFile() method (616be8d)
  • ๐ŸŽธ implement initial version of appendFile() method (65580aa)
  • ๐ŸŽธ implement initial version of writeFile() method (80e8499)
  • ๐ŸŽธ implement initial version of writeFile() method (e2b2bfd)
  • ๐ŸŽธ implement keys() method (33f9af0)
  • ๐ŸŽธ implement keys() method (b8e8a4c)
  • ๐ŸŽธ implement openSync() method (8ecac69)
  • ๐ŸŽธ implement openSync() method (4b7eddd)
  • ๐ŸŽธ implement read() method (33bea4b)
  • ๐ŸŽธ implement read() method (7357c14)
  • ๐ŸŽธ implement readFileSync() method (3a1b737)
  • ๐ŸŽธ implement readFileSync() method (2a07e34)
  • ๐ŸŽธ implement readFileSync() method (953d276)
  • ๐ŸŽธ implement readFileSync() method (bb803e2)
  • ๐ŸŽธ implement realpath() method (458a7b2)
  • ๐ŸŽธ implement realpath() method (99b12dc)
  • ๐ŸŽธ implement rmdir() method (c06734b)
  • ๐ŸŽธ implement rmdir() method (973af0a)
  • ๐ŸŽธ implement sync messenger (1c0bd59)
  • ๐ŸŽธ implement sync messenger (d221870)
  • ๐ŸŽธ implement sync write method (3017ecd)
  • ๐ŸŽธ implement sync write method (22047da)
  • ๐ŸŽธ implement truncation (af8452e)
  • ๐ŸŽธ implement truncation (d4469d1)
  • ๐ŸŽธ implement unlink() method (e11a383)
  • ๐ŸŽธ implement unlink() method (6bd3e75)
  • ๐ŸŽธ implement writeSync() method (7a2fced)
  • ๐ŸŽธ implement writeSync() method (12a8b3f)
  • ๐ŸŽธ improve mkdir method (e6dd59e)
  • ๐ŸŽธ improve mkdir method (c393f6c)
  • ๐ŸŽธ improve read stream interfaces (7e1a844)
  • ๐ŸŽธ improve read stream interfaces (6d5de0c)
  • ๐ŸŽธ improve stat method (505a1d9)
  • ๐ŸŽธ improve stat method (c6eeab4)
  • ๐ŸŽธ improve write stream, better flag handling (531f2a7)
  • ๐ŸŽธ improve write stream, better flag handling (7b9e0a3)
  • ๐ŸŽธ improve writing at offset logic (71b6afc)
  • ๐ŸŽธ improve writing at offset logic (392932a)
  • ๐ŸŽธ improve writing to file (1de0e06)
  • ๐ŸŽธ improve writing to file (3edcac1)
  • ๐ŸŽธ include "writeSync" method for sync writer (b267f78)
  • ๐ŸŽธ include "writeSync" method for sync writer (b006b2d)
  • ๐ŸŽธ introduce FSA context (f603262)
  • ๐ŸŽธ introduce FSA context (b696e09)
  • ๐ŸŽธ make basic WriteStream work (69281ff)
  • ๐ŸŽธ make basic WriteStream work (c109af1)
  • ๐ŸŽธ make statSync() resolve the path correctly (0d81728)
  • ๐ŸŽธ make statSync() resolve the path correctly (7801533)
  • ๐ŸŽธ normalize adapter rpc (16ce2cf)
  • ๐ŸŽธ normalize adapter rpc (96b8374)
  • ๐ŸŽธ progress on writable stream (a568afd)
  • ๐ŸŽธ progress on writable stream (9900423)
  • ๐ŸŽธ setup fsa to node utility (50d2a1e)
  • ๐ŸŽธ setup fsa to node utility (5fa0d61)
  • ๐ŸŽธ setup node-to-fsa folder (a4268c6)
  • ๐ŸŽธ setup node-to-fsa folder (16e78e3)
  • ๐ŸŽธ setup webfs (68f0014)
  • ๐ŸŽธ setup webfs (99c915f)
  • ๐ŸŽธ standartize message contents (b3254f6)
  • ๐ŸŽธ standartize message contents (c254dc7)
  • ๐ŸŽธ start synchronous file handle implementation (f9b0f73)
  • ๐ŸŽธ start synchronous file handle implementation (d05c407)
  • ๐ŸŽธ start WriteStream implementation (5971c39)
  • ๐ŸŽธ start WriteStream implementation (32e13a8)
  • ๐ŸŽธ throw exception on closed files (7adff27)
  • ๐ŸŽธ throw exception on closed files (5119b8f)
  • ๐ŸŽธ track number of written bytes (b80f7b7)
  • ๐ŸŽธ track number of written bytes (7a65daa)
  • ๐ŸŽธ write through a swap file (84cecec)
  • ๐ŸŽธ write through a swap file (5134766)

v4.1.0

11 months ago

4.1.0 (2023-06-20)

Bug Fixes

  • ๐Ÿ› allow readin into various kinds of buffers (e9c70e9)
  • ๐Ÿ› allow to seek in file (b363689)
  • ๐Ÿ› do not allow empty children names (43da1d6)
  • ๐Ÿ› handle root folder better (76de780)
  • ๐Ÿ› throw "ENOENT" and "ENOTDIR" when folder or file 404 (ddd5d56)

Features

  • ๐ŸŽธ add .truncate() method (085335c)
  • ๐ŸŽธ add ability to close files (d3828a8)
  • ๐ŸŽธ add ability to create sub directories (528c807)
  • ๐ŸŽธ add ability to remove all files (566e29b)
  • ๐ŸŽธ add appendFileSync() method (27411e4)
  • ๐ŸŽธ add basenem() utility (43354e5)
  • ๐ŸŽธ add copyFile() method (5e207c4)
  • ๐ŸŽธ add copyFileSync() method (5fc1bac)
  • ๐ŸŽธ add createSwapFile() method (b07ce79)
  • ๐ŸŽธ add existsSync() method (073ec6b)
  • ๐ŸŽธ add fstatSync() method (6b1597a)
  • ๐ŸŽธ add initial writign implementation (6a50382)
  • ๐ŸŽธ add lstat() and fstat() methods (e147d58)
  • ๐ŸŽธ add mkdirSync() method (bcad970)
  • ๐ŸŽธ add mkdtempSync() method (68033dd)
  • ๐ŸŽธ add options to promises.rmdir() method (0628d56)
  • ๐ŸŽธ add pathToLocation() utility (cb92a99)
  • ๐ŸŽธ add read/write mode separation (60a65c1)
  • ๐ŸŽธ add readdirSync() method (3689abd)
  • ๐ŸŽธ add readlinkSync() method (8d243a0)
  • ๐ŸŽธ add readSync() method (3729cd0)
  • ๐ŸŽธ add realpathSync() method (75890e0)
  • ๐ŸŽธ add renameSync() method (5b1cd63)
  • ๐ŸŽธ add rm() method (29a7dc8)
  • ๐ŸŽธ add rmdirSync() method (695b62a)
  • ๐ŸŽธ add rmSync() method (aa9acb3)
  • ๐ŸŽธ add some common objects (c89744d)
  • ๐ŸŽธ add sync api (16d6600)
  • ๐ŸŽธ add timeout to spin lock (48e8e74)
  • ๐ŸŽธ add truncateSync() and ftruncateSync() methods (2b77619)
  • ๐ŸŽธ add typed array view support to volume (7c8439f)
  • ๐ŸŽธ add unlinkSync() method (417f911)
  • ๐ŸŽธ add writev() method (8190bfd)
  • ๐ŸŽธ create FSA types folder (bb0c75a)
  • ๐ŸŽธ create Node fs api tyeps (4db1321)
  • ๐ŸŽธ explose FSA from index file (77696f5)
  • ๐ŸŽธ implement .getDirectoryHandle() method (090980c)
  • ๐ŸŽธ implement .getFile() method (17015a3)
  • ๐ŸŽธ implement .getFileHandle() method (40bdc13)
  • ๐ŸŽธ implement .isSameEntry() method (438806b)
  • ๐ŸŽธ implement .mkdir method (be1525a)
  • ๐ŸŽธ implement .mkdtemp() method (2db4cd0)
  • ๐ŸŽธ implement .removeEntry() method (dca57a2)
  • ๐ŸŽธ implement .resolve() method (9d5669c)
  • ๐ŸŽธ implement .values() and .entries() (177010a)
  • ๐ŸŽธ implement .write() for FSA (6a2fa2d)
  • ๐ŸŽธ implement access() method (c72390b)
  • ๐ŸŽธ implement accessSync() method (719a19f)
  • ๐ŸŽธ implement basic readdir (685bc7e)
  • ๐ŸŽธ implement basic rename() method, only for files (4769314)
  • ๐ŸŽธ implement basic state() method (4039d64)
  • ๐ŸŽธ implement closeSync() method (646efaf)
  • ๐ŸŽธ implement Dirent listings (5d6f976)
  • ๐ŸŽธ implement exists() method (0753937)
  • ๐ŸŽธ implement first version of readFile() method (629f22a)
  • ๐ŸŽธ implement first version of worker (caf8394)
  • ๐ŸŽธ implement FSA ReadStream (53784d9)
  • ๐ŸŽธ implement initial version of .open() mehtod (cb363b5)
  • ๐ŸŽธ implement initial version of appendFile() method (65580aa)
  • ๐ŸŽธ implement initial version of writeFile() method (e2b2bfd)
  • ๐ŸŽธ implement keys() method (b8e8a4c)
  • ๐ŸŽธ implement openSync() method (4b7eddd)
  • ๐ŸŽธ implement read() method (7357c14)
  • ๐ŸŽธ implement readFileSync() method (953d276)
  • ๐ŸŽธ implement readFileSync() method (bb803e2)
  • ๐ŸŽธ implement realpath() method (99b12dc)
  • ๐ŸŽธ implement rmdir() method (973af0a)
  • ๐ŸŽธ implement sync messenger (d221870)
  • ๐ŸŽธ implement sync write method (22047da)
  • ๐ŸŽธ implement truncation (d4469d1)
  • ๐ŸŽธ implement unlink() method (6bd3e75)
  • ๐ŸŽธ implement writeSync() method (12a8b3f)
  • ๐ŸŽธ improve mkdir method (c393f6c)
  • ๐ŸŽธ improve read stream interfaces (6d5de0c)
  • ๐ŸŽธ improve stat method (c6eeab4)
  • ๐ŸŽธ improve write stream, better flag handling (7b9e0a3)
  • ๐ŸŽธ improve writing at offset logic (392932a)
  • ๐ŸŽธ improve writing to file (3edcac1)
  • ๐ŸŽธ include "writeSync" method for sync writer (b006b2d)
  • ๐ŸŽธ introduce FSA context (b696e09)
  • ๐ŸŽธ make basic WriteStream work (c109af1)
  • ๐ŸŽธ make statSync() resolve the path correctly (7801533)
  • ๐ŸŽธ normalize adapter rpc (96b8374)
  • ๐ŸŽธ progress on writable stream (9900423)
  • ๐ŸŽธ setup fsa to node utility (5fa0d61)
  • ๐ŸŽธ setup node-to-fsa folder (16e78e3)
  • ๐ŸŽธ setup webfs (99c915f)
  • ๐ŸŽธ standartize message contents (c254dc7)
  • ๐ŸŽธ start synchronous file handle implementation (d05c407)
  • ๐ŸŽธ start WriteStream implementation (32e13a8)
  • ๐ŸŽธ throw exception on closed files (5119b8f)
  • ๐ŸŽธ track number of written bytes (7a65daa)
  • ๐ŸŽธ write through a swap file (5134766)

v4.0.0

11 months ago

4.0.0 (2023-06-16)

Features

  • ๐ŸŽธ add File System Access API TypeScript types (3ea8641)

BREAKING CHANGES

  • ๐Ÿงจ no breaking changes in this commit, but bumping to get this to v4 in NPM