0.45.2 • Published 2 days ago

opendal v0.45.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 days ago

Apache OpenDAL™ Node.js Binding

npm.io npm Website

npm.io

Installation

npm install opendal

Docs

See our documentation on opendal.apache.org.

To build the docs locally, please run the following commands:

# Only need to run once unless you want to update the docs theme
pnpm run build:theme

# Build the docs
pnpm run docs

Usage

import { Operator } from "opendal";

async function main() {
  const op = new Operator("fs", { root: "/tmp" });
  await op.write("test", "Hello, World!");
  const bs = await op.read("test");
  console.log(new TextDecoder().decode(bs));
  const meta = await op.stat("test");
  console.log(`contentLength: ${meta.contentLength}`);
}

main();

Contributing

License and Trademarks

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

Apache OpenDAL, OpenDAL, and Apache are either registered trademarks or trademarks of the Apache Software Foundation.

0.45.2

2 days ago

0.45.1

2 months ago

0.45.0

3 months ago

0.44.2

4 months ago

0.44.1

4 months ago

0.44.0

4 months ago

0.42.0

6 months ago

0.41.0

7 months ago

0.40.0

8 months ago

0.39.0

9 months ago

0.38.1

10 months ago

0.38.0

11 months ago

0.37.0

11 months ago

0.36.1

11 months ago

0.36.0

11 months ago

0.35.0

12 months ago

0.32.0

1 year ago

0.31.1

1 year ago

0.33.3

1 year ago

0.33.2

1 year ago

0.34.0

12 months ago

0.33.1

1 year ago

0.30.5

1 year ago

0.30.4

1 year ago

0.30.3

1 year ago

0.30.2

1 year ago

0.0.1

1 year ago