{"id":15171896,"url":"https://github.com/marius-pieptea/react-mini-reddit","last_synced_at":"2026-02-22T00:39:31.720Z","repository":{"id":251278020,"uuid":"836931038","full_name":"marius-pieptea/react-mini-reddit","owner":"marius-pieptea","description":"A minimal setup for a React application using Vite, including Redux, Axios, and Jest. Supports HMR and ESLint.","archived":false,"fork":false,"pushed_at":"2024-08-01T21:40:01.000Z","size":101,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-24T03:40:38.761Z","etag":null,"topics":["axios","babel","eslint","hmr","jest","postcss","react","redux","swc","tailwindcss","vite"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marius-pieptea.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-01T21:26:46.000Z","updated_at":"2024-08-01T22:03:18.000Z","dependencies_parsed_at":"2024-08-01T23:42:52.245Z","dependency_job_id":"12281c93-3fa3-484f-92a7-9427a2a86186","html_url":"https://github.com/marius-pieptea/react-mini-reddit","commit_stats":null,"previous_names":["marius-pieptea/mini-reddit"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/marius-pieptea/react-mini-reddit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marius-pieptea%2Freact-mini-reddit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marius-pieptea%2Freact-mini-reddit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marius-pieptea%2Freact-mini-reddit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marius-pieptea%2Freact-mini-reddit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marius-pieptea","download_url":"https://codeload.github.com/marius-pieptea/react-mini-reddit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marius-pieptea%2Freact-mini-reddit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29701072,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T23:35:04.139Z","status":"ssl_error","status_checked_at":"2026-02-21T23:35:03.832Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["axios","babel","eslint","hmr","jest","postcss","react","redux","swc","tailwindcss","vite"],"created_at":"2024-09-27T09:21:15.633Z","updated_at":"2026-02-22T00:39:31.706Z","avatar_url":"https://github.com/marius-pieptea.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React Project - Mini Reddit\n\nThis project provides a minimal setup for React to work with Vite, a modern front-end build tool. The setup includes support for Hot Module Replacement (HMR) and ESLint rules. It also offers two official plugins: one using Babel for Fast Refresh, and another using SWC for the same purpose.\n\n## Table of Contents\n\n- [Features](#features)\n- [Getting Started](#getting-started)\n- [Project Structure](#project-structure)\n- [Styling](#styling)\n- [Scripts](#scripts)\n- [Dependencies](#dependencies)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Features\n\n- **Vite**: Fast and modern build tool.\n- **React**: A JavaScript library for building user interfaces.\n- **Redux Toolkit**: For state management.\n- **Axios**: For making HTTP requests.\n- **ESLint**: For code linting.\n- **Jest**: For testing.\n\n## Getting Started\n\nTo get started with this project, follow these steps:\n\n1. **Clone the repository:**\n   ```sh\n   git clone https://github.com/yourusername/vite-react-project.git\n2. **Navigate to the project directory:**\n   ```sh\n   cd vite-react-project\n3. **Install dependencies:**\n   ```sh\n   npm install\n   # or\n   yarn install\n4. **Start the development server:**\n   ```sh\n   npm run dev\n   # or\n   yarn dev\n\n## Project Structure\n\nThe project's overall structure is organized into the following main directories:\n\n- **public**: Contains static assets.\n- **src**: Contains the primary application code.\n  - **App.css**: Root component styles.\n  - **App.jsx**: Root component of the application.\n  - **index.css**: Global or shared CSS styles.\n  - **main.jsx**: Entry point for the application's JavaScript logic.\n  - **mockData.js**: Mock data for testing or development.\n  - **__tests__**: Contains test files for the application's components.\n  - **assets**: Contains static assets.\n  - **components**: Contains reusable UI components.\n  - **store**: Contains the Redux store and related files.\n\n## Styling\n\nThis project uses the following tools and frameworks for styling:\n\n- **Tailwind CSS**: A utility-first CSS framework for rapid UI development.\n- **PostCSS**: A tool for transforming CSS with JavaScript plugins.\n- **Custom CSS**: Additional custom styles are defined in `App.css` and `index.css`.\n\n## Scripts\n\nThe following scripts are available in this project:\n\n- **dev**: Starts the development server using Vite.\n- **build**: Builds the application for production using Vite.\n- **lint**: Lints the codebase using ESLint.\n- **preview**: Starts the development server with hot module replacement for previewing changes.\n- **test**: Runs the test suite using Jest.\n\n## Dependencies\n\n- **@reduxjs/toolkit**: A popular Redux toolkit for managing application state.\n- **axios**: A popular HTTP client for making API requests.\n- **react**: The primary JavaScript library for building user interfaces.\n- **react-dom**: The DOM-specific package for React.\n- **redux**: A predictable state container for JavaScript apps.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarius-pieptea%2Freact-mini-reddit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarius-pieptea%2Freact-mini-reddit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarius-pieptea%2Freact-mini-reddit/lists"}