Apache OpenDAL™ - v0.48.1
    Preparing search index...

    Upgrade to v0.48

    Now, nodejs binding op.is_exist changed to op.exists to align with nodejs API style.

    Upgrade to v0.47

    Now, the append operation has been removed. You can use below code instead.

    op.write("path/to/file", Buffer.from("hello world"), { append: true });
    

    Upgrade to v0.44

    Because of a TLS lib issue, we temporarily disable the services-ftp feature.

    Now, the list operation returns Array<Entry> instead of a lister. Also, we removed scan, you can use list('some/path', {recursive: true})/listSync('some/path', {recursive: true}) instead of scan('some/path')/scanSync('some/path').