Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.13 KB

File metadata and controls

35 lines (26 loc) · 1.13 KB

⚠️ DEPRECATED

This library is not currently being maintained. If you have any questions please reach out to us on our community slack.

Node Pachyderm

npmversion Slack Status

Official Node Pachyderm client maintained by Pachyderm Inc.

Installation

npm i @pachyderm/node-pachyderm

A Small Taste

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();

Contributing

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).