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-cliAfter installation, the f2d command is available in your terminal:
f2d --versionAlternative Methods
npm
npm install -g f2d-cliRun 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 --globalSystem Requirements
| Requirement | Version |
|---|---|
| Bun (recommended) | >= 1.0 |
| Node.js (alternative) | >= 18.0 |
Verify Installation
f2d --helpYou 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
- Configure your API key to start searching
- See all CLI Commands