@polywrap/file-system-plugin-js
v0.12.0
Published
Polywrap File System Javascript Plugin
Downloads
178
Readme
@polywrap/file-system-plugin-js
The Filesystem plugin enables wraps running within the Polywrap client to interact with the local filesystem.
Interface
The FileSystem plugin implements an existing wrap interface at wrapscan.io/polywrap/[email protected]
.
Usage
import { PolywrapClient, PolywrapClientConfigBuilder } from "@polywrap/client-js";
import { filesystemPlugin } from "@polywrap/file-system-plugin-js";
const config = new PolywrapClientConfigBuilder()
.setPackage(
"wrapscan.io/polywrap/[email protected]",
fileSystemPlugin({ })
)
.build();
client.invoke<Uint8Array>({
uri: "wrapscan.io/polywrap/[email protected]",
method: "readFile",
args: {
path: "./file.txt"
}
});
For more usage examples see src/__tests__
.