9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
30 lines
1.0 KiB
JavaScript
30 lines
1.0 KiB
JavaScript
/**
|
|
* Product Hunt latest posts — public Atom feed, no browser needed.
|
|
*/
|
|
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { fetchFeed, PRODUCTHUNT_CATEGORY_SLUGS } from './utils.js';
|
|
cli({
|
|
site: 'producthunt',
|
|
name: 'posts',
|
|
access: 'read',
|
|
description: 'Latest Product Hunt launches (optional category filter)',
|
|
domain: 'www.producthunt.com',
|
|
strategy: Strategy.PUBLIC,
|
|
args: [
|
|
{ name: 'limit', type: 'int', default: 20, help: 'Number of results (max 50)' },
|
|
{
|
|
name: 'category',
|
|
type: 'string',
|
|
default: '',
|
|
help: `Category filter: ${PRODUCTHUNT_CATEGORY_SLUGS.join(', ')}`,
|
|
},
|
|
],
|
|
columns: ['rank', 'name', 'tagline', 'author', 'date', 'url'],
|
|
func: async (args) => {
|
|
const count = Math.min(Number(args.limit) || 20, 50);
|
|
const category = String(args.category ?? '').trim() || undefined;
|
|
const posts = await fetchFeed(category);
|
|
return posts.slice(0, count);
|
|
},
|
|
});
|