f2d

Installation

Install the f2d CLI tool using Bun, npm, or run without installing

Quick Install

The fastest way to install f2d globally:

bun install -g f2d-cli

After installation, the f2d command is available in your terminal:

f2d --version

Alternative Methods

npm

npm install -g f2d-cli

Run Without Installing

Use bunx or npx to run f2d without a global install:

# Using bunx
bunx f2d-cli search "Python developer"

# Using npx
npx f2d-cli search "Python developer"

This downloads and runs f2d on the fly. Useful for one-off searches or trying f2d before committing to an install.

From Source (Contributors)

If you're working within the f2d monorepo:

cd recruitment-search
bun install
bunx turbo build
cd packages/cli
bun link --global

System Requirements

RequirementVersion
Bun (recommended)>= 1.0
Node.js (alternative)>= 18.0

Verify Installation

f2d --help

You should see the available commands (search, configure, config). If the command is not found, ensure your global bin directory is in your PATH.

Next Steps

On this page