Public
Like
twtxt-feed
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v2View latest version
A clean, minimal web application for viewing twtxt.txt feeds in a beautiful card-based timeline format.
- Enter any twtxt.txt feed URL
- Clean, responsive card-based design
- Parses RFC3339 timestamps and metadata
- Mobile-friendly interface using Tailwind CSS
├── backend/
│ └── index.ts # Main HTTP server with CORS proxy
├── frontend/
│ ├── index.html # Main HTML template
│ ├── index.tsx # React frontend entry point
│ └── components/
│ ├── App.tsx # Main app component
│ ├── FeedInput.tsx # URL input component
│ └── TweetCard.tsx # Individual tweet card component
├── shared/
│ └── types.ts # Shared TypeScript types
└── README.md
- Enter a twtxt.txt feed URL in the input field
- Click "Load Feed" to fetch and display the timeline
- View posts in a clean, card-based format with timestamps
Supports the standard twtxt format:
- RFC3339 timestamps followed by TAB character
- UTF-8 encoded with LF line separators
- Metadata parsing (nickname, avatar, description)
- One status update per line