This library is not currently being maintained. If you have any questions please reach out to us on our community slack.
Official Node Pachyderm client maintained by Pachyderm Inc.
npm i @pachyderm/node-pachyderm
Here's an example that creates a repo and adds a file:
import { pachydermClient } from "@pachyderm/node-pachyderm";
const demo = async () => {
const pachClient = pachydermClient({
pachdAddress: "localhost:30650",
});
await pachClient.pfs().createRepo({
repo: { name: "test" },
});
};
demo();
This package is co-maintained by Pachyderm and the community. If you're looking to contribute to the project, this is a fantastic place to get involved. Take a look at the contributing guide for more info (including testing instructions).