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:
| Package | Version | Purpose |
|---|---|---|
arquero | ^5.4.1 | Data transformation and table operations |
axios | ^1.7.9 | HTTP client for external API integration |
exceljs | ^4.4.0 | Excel file reading and writing |
mssql | ^10.0.4 | Microsoft 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();