Skip to content

lakefs-ts 1.0.1

Install from the command line:
Learn more about npm packages
$ npm install @quannadev/lakefs-ts@1.0.1
Install via package.json:
"@quannadev/lakefs-ts": "1.0.1"

About this version

Lakefs client for Node.js

This is the Node.js client for lakeFS.

Installation

npm install lakefs-ts

Usage

import {Branch, getConfigFromEnv, QueryParams} from "../dist";

async function main() {
    const config = getConfigFromEnv();
    const branch = new Branch(config);
    const params: QueryParams = {
        amount: 100,
    }
    const branches = await branch.getBranches(params);
    console.log("branches", branches)
}

main().catch(err => {
    console.log("err", err)
    process.exit(1); 
})

Details


Assets

  • lakefs-ts-1.0.1.tgz

Download activity

  • Total downloads 1
  • Last 30 days 0
  • Last week 0
  • Today 0

Recent versions

View all