Minimal RSS feed aggregator with tiling layout.
- Multiple source types (RSS, Reddit, Hacker News, custom scrapers)
- Auto-refresh via SSE
- Embedded configuration
# Development with auto-reload
mage dev
# Build for Linux x86_64
mage build
# Run
./target/feedletServer runs on http://localhost:3737
Edit internal/config/config.go and rebuild:
{
Name: "r/programming",
Type: "reddit",
URL: "https://old.reddit.com/r/programming/top/.rss?t=month",
Interval: 600,
IntervalJitter: 120,
Enabled: true,
Days: 7,
}Source types: rss, reddit, hnalgolia, tildes, desuarchive, meltzerwiki
hnalgolia sources fetch Hacker News directly from hn.algolia.com.
tildes sources fetch topics from Tildes.
desuarchive sources fetch threads from DesuArchive (4chan archives).
meltzerwiki sources fetch the latest Dave Meltzer 5★+ matches from Wikipedia.
Logs to stdout and OS log directory:
- macOS:
~/Library/Logs/feedlet/ - Linux:
~/.local/state/feedlet/logs/
Auto-rotates daily, keeps 3 days.
mage dev- Run with auto-reloadmage build- Build for Linux x86_64 totarget/mage clean- Remove build artifactsmage setup- Install tools