{"id":21357840,"url":"https://github.com/bobergot/tuiter-sandbox","last_synced_at":"2026-04-16T11:31:13.849Z","repository":{"id":227924612,"uuid":"537522814","full_name":"BobErgot/Tuiter-Sandbox","owner":"BobErgot","description":"Explore Tuiter Sandbox: a React-based microblogging platform mimicking Twitter's core features for educational purposes. Dive into tuits, profiles, and notes with React/Redux.","archived":false,"fork":false,"pushed_at":"2024-03-21T18:51:10.000Z","size":8708,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-16T06:15:34.783Z","etag":null,"topics":["interactive","javascript","learning-project","modern-ui","react","react-router","redux","social-media","web-development","webapp"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BobErgot.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2022-09-16T15:49:11.000Z","updated_at":"2024-10-07T23:11:50.000Z","dependencies_parsed_at":"2025-01-22T18:40:19.860Z","dependency_job_id":null,"html_url":"https://github.com/BobErgot/Tuiter-Sandbox","commit_stats":null,"previous_names":["bobergot/tuiter-react-web-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BobErgot/Tuiter-Sandbox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BobErgot%2FTuiter-Sandbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BobErgot%2FTuiter-Sandbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BobErgot%2FTuiter-Sandbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BobErgot%2FTuiter-Sandbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BobErgot","download_url":"https://codeload.github.com/BobErgot/Tuiter-Sandbox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BobErgot%2FTuiter-Sandbox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31883695,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T09:23:21.276Z","status":"ssl_error","status_checked_at":"2026-04-16T09:23:15.028Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["interactive","javascript","learning-project","modern-ui","react","react-router","redux","social-media","web-development","webapp"],"created_at":"2024-11-22T05:12:45.470Z","updated_at":"2026-04-16T11:31:13.812Z","avatar_url":"https://github.com/BobErgot.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tuiter - Social Media Platform Sandbox\n\nTuiter is a custom social media platform designed to emulate the core features of Twitter. This project was created as a learning tool for React, Redux, and related technologies. Users can engage with the platform by creating posts, reacting to them, and managing their own notes.\n\n## Features\n\n- **Tuiter**: Users can post messages, like and dislike posts, and delete their own posts.\n- **Explore**: Discover and follow trending topics.\n- **Profile Management**: Create and edit user profiles, with personalized bios, locations, and website links.\n- **Notes**: A notes section where users can jot down and manage personal notes, using Redux for state management.\n- **Interaction**: Engage with posts through reactions like hearts and dislikes, demonstrating real-time interaction within the platform.\n\n## Screenshots\n\n### Profile Page\n![Profile Page](screenshots/profile-page.png)\n\n### Tuit Page\n![Tuit Page](screenshots/tuit-page.png)\n\n### Note Page\n![Note Page](screenshots/note-page.png)\n\n## Technologies Used\n\n- React.js\n- Redux Toolkit\n- React Router\n- Axios for API requests\n- Node.js and Express.js for the backend API - [Tuiter Sandbox Server](https://github.com/BobErgot/Tuiter-Sandbox-Server)\n\n## Getting Started\n\nFollow these instructions to get a copy of the project up and running on your local machine for development and testing purposes.\n\n### Prerequisites\n- npm\n    ```sh\n      npm install npm@latest -g\n    ```\n### Installation\n\n1. **Clone the repository:**\n   ```sh\n   git clone https://github.com/BobErgot/Tuiter-Sandbox\n   ```\n   \n2. **Navigate to the project directory:**\n   ```sh\n   cd Tuiter-Sandbox\n   ```\n\n3. **Install the necessary packages:**\n   ```sh\n   npm install\n   ```\n\n4. **Set up the environment variables in a .env file in the root directory:**\n   ```sh\n   REACT_APP_API_BASE='http://localhost:4000/api'\n   ```\n\n### Running the Application\nRun the following command to start the application:\n   ```sh\n   npm start\n   ```\nThis will launch the app in development mode. Open http://localhost:3000 to view it in the browser.\n\n## Code Structure\n\n- `tuiter-service.js`: Manages API requests for posting and interacting with tuits.\n- `tuits-thunks.js`: Contains thunk middleware for asynchronous Redux actions.\n- `App.js`: Sets up routing and navigation using React Router.\n- `profile/`: Includes components and reducer for user profile management.\n- `notes/`: Features components and Redux setup for managing personal notes.\n- `tuit-item.js`: Renders individual tuit posts with functionality to delete.\n- `tuit-stats.js`: Provides UI for tuit interactions like likes and dislikes.\n- `tuits-list.js`: Displays a list of tuits with real-time updates.\n- `tuits-reducer.js`: Manages the state of tuits, including adding and removing reactions.\n\n## License\nDistributed under the MIT License. See the LICENSE file for more details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbobergot%2Ftuiter-sandbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbobergot%2Ftuiter-sandbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbobergot%2Ftuiter-sandbox/lists"}