Skip to main content

Installation

Install the package

npm install farseer-client

Or if you're using a specific release tarball:

npm install https://your-release-url/farseer-client-v1.4.9.tar

Requirements

  • Node.js >= 18.0
  • TypeScript >= 5.0 (recommended)

Peer Dependencies

The following packages are included with farseer-client:

PackageVersionPurpose
arquero^5.4.1Data transformation and table operations
axios^1.7.9HTTP client for external API integration
exceljs^4.4.0Excel file reading and writing
mssql^10.0.4Microsoft SQL Server connectivity

Basic Setup

import { FarseerClient } from 'farseer-client';

// Auto-configuration from environment variables
const client = new FarseerClient();

Or import everything under a namespace:

import * as farseer from 'farseer-client';

const client = new farseer.FarseerClient();

Next Steps