Simple Node.js CLI for querying the Remotive remote jobs API and returning AI-friendly JSON.
- Queries Remotive jobs API
- Supports filters (
query,category,company) - Sorts jobs by newest publication date
- Converts HTML descriptions to plain text
- Outputs structured JSON (or raw API response with
--raw)
From inside jobSearch/:
npm installNo API key is required for this tool (public Remotive endpoint).
node remotive.js --query "sales"
node remotive.js --query "sales" --limit 5 --pretty
node remotive.js --query "sales" --category "sales" --company "acme"
node remotive.js --query "engineering" --raw --pretty--query,-qsearch title + description--limit,-lmax jobs (default20)--category,-ccategory filter--company,-Ccompany name filter--pretty,-ppretty print JSON--rawraw API response--help,-h
- Remotive warns that feed data may be delayed.
- Avoid polling too aggressively in production automation.
- If you publish results, include job URLs and source attribution.