Tech News Dashboard is a modern web application that aggregates the latest technology and software news from popular platforms like Dev.to and Hacker News into a single interface.
This project is developed using React, TypeScript, and Vite; state management is provided by Redux Toolkit, and a modern interface is designed with Tailwind CSS.
- Multi-Source Support: Fetches the latest posts from Dev.to and Hacker News.
- Instant Search: You can search for content simultaneously across all platforms using the search bar.
- Add to Favorites: You can add news you like to favorites and read them later (Stored in the browser via Local Storage).
- Dark & Light Mode: Switch between eye-friendly Dark and Light theme options with a single click.
- Modern & Responsive Design: An interface built with Tailwind CSS that looks perfect on every device (mobile, tablet, desktop).
- High Performance: Lightning-fast loading and runtime performance with Vite and React.
- React - User interface library
- TypeScript - For type safety
- Vite - Fast development and build tool
- Redux Toolkit - Global state management
- Tailwind CSS - Styling and design
- React Router - Page routing
Follow the steps below to run the project on your computer:
-
Clone the Project:
git clone [https://github.com/Erdem-Baran/tech-news-app.git](https://github.com/Erdem-Baran/tech-news-app.git) cd tech-news-app -
Install Dependencies:
npm install # or yarn install -
Start Development Server:
npm run dev # or yarn dev -
Open in Browser: Go to the address shown in the terminal (usually
http://localhost:5173).
src/
├── components/ # Reusable components (PostCards, ThemeToggle, etc.)
├── hooks/ # Custom hooks (useTheme, useDebounce, ReduxHooks)
├── layout/ # Main page layout (MainLayout)
├── pages/ # Page components (Home, Favorites, etc.)
├── redux/ # Redux store and slice files
├── services/ # Services managing API requests
├── types/ # TypeScript type definitions
├── utils/ # Utility functions (Date formatting, etc.)
└── main.tsx # Entry point of the application.