https://github.com/toddlers/naws
reading aws what's new in terminal
https://github.com/toddlers/naws
aws aws-news cli rss rust terminal
Last synced: 3 months ago
JSON representation
reading aws what's new in terminal
- Host: GitHub
- URL: https://github.com/toddlers/naws
- Owner: toddlers
- Created: 2025-08-03T16:39:47.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-12T08:51:19.000Z (11 months ago)
- Last Synced: 2025-08-12T10:12:34.709Z (11 months ago)
- Topics: aws, aws-news, cli, rss, rust, terminal
- Language: Rust
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# naws - AWS What's New CLI
A simple, command-line tool written in Rust to fetch and display the latest announcements from
the AWS "What's New" RSS feed directly in terminal.
---
## Features
- **Filtering**: Search for announcements by keyword across titles, descriptions, and categories.
- **Flexible Descriptions**: View a short summary or the full announcement description.
- **Multiple Formats**: Output as human-readable, colored text or as structured JSON.
Usage
The basic command fetches the 10 most recent announcements.naws
```bash
naws
```
Examples
Show 5 recent announcements with full descriptions:
```bash
naws -l 5 -F
```
Filter for announcements related to "Lambda" and show descriptions:
```bash
naws --filter "Lambda" --show-description
```
Get the 3 latest "EKS" announcements in JSON format:
```bash
naws -l 3 -f "EKS" -j
```