A minimalist RSS feed reader built with SvelteKit and TypeScript
⚠️ Building in public: This RSS feed reader is currently in its initial phase, and what is being published is only its first version, far from the desired result.
Demo: https://juanchiparra.github.io/svelte-rss-feed/
svelte-rss-feed/
├── src/
│ ├── lib/
│ │ ├── actions/masonry.ts
│ │ ├── components/
│ │ ├── rss.ts
│ │ ├── styles/global.css
│ │ ├── taxonomy.json
│ │ └── utils/
│ ├── routes/
│ │ ├── +layout.svelte
│ │ ├── +layout.ts
│ │ ├── +page.server.ts
│ │ └── +page.svelte
│ ├── app.html
│ └── app.d.ts
├── static/
├── package.json
├── svelte.config.js
├── tsconfig.json
└── vite.config.ts
# Clone this repository
git clone https://github.com/juanchiparra/svelte-rss-feed.git
cd svelte-rss-feed
# Install the dependencies
npm install
# Start the development server
npm run dev
npm run devnpm run buildnpm run previewnpm run deployContributions are welcome! If you encounter a problem or have an idea to improve the project, open an issue or send a pull request.