{"id":25931939,"url":"https://github.com/jay1194/deep-thoughts","last_synced_at":"2025-03-04T00:15:35.892Z","repository":{"id":244134503,"uuid":"811956938","full_name":"Jay1194/Deep-Thoughts","owner":"Jay1194","description":"Built with the MERN stack (MongoDB, Express.js, React, Node.js), Deep Thoughts lets users sign up, post thoughts, and engage with others, offering real-life social media interactions.","archived":false,"fork":false,"pushed_at":"2024-06-14T03:23:49.000Z","size":353,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-06-15T03:45:00.217Z","etag":null,"topics":["apollo-client","apollo-server","concurrently","fakerjs","graphql","javascript","jwt-tokens","mern-stack","mongodb-atlas","nodejs","nodemon","react","react-router"],"latest_commit_sha":null,"homepage":"https://peaceful-cove-57057-849d7f64fca8.herokuapp.com/","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/Jay1194.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":"2024-06-07T16:37:29.000Z","updated_at":"2024-06-14T03:24:16.000Z","dependencies_parsed_at":"2024-06-13T03:41:31.405Z","dependency_job_id":"10b0f1d8-1be8-4e18-a683-81cb70ac38bb","html_url":"https://github.com/Jay1194/Deep-Thoughts","commit_stats":null,"previous_names":["jay1194/deep-thoughts"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jay1194%2FDeep-Thoughts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jay1194%2FDeep-Thoughts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jay1194%2FDeep-Thoughts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Jay1194%2FDeep-Thoughts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Jay1194","download_url":"https://codeload.github.com/Jay1194/Deep-Thoughts/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241758963,"owners_count":20015251,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["apollo-client","apollo-server","concurrently","fakerjs","graphql","javascript","jwt-tokens","mern-stack","mongodb-atlas","nodejs","nodemon","react","react-router"],"created_at":"2025-03-04T00:15:34.973Z","updated_at":"2025-03-04T00:15:35.710Z","avatar_url":"https://github.com/Jay1194.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deep Thoughts Social Media App\n\nDeep Thoughts is a social media application built with the MERN stack (MongoDB, Express.js, React, Node.js). Users can sign up, post their thoughts, and interact with others, similar to real-life social media apps.\n\n\n![Screenshot 2024-06-13 at 8 22 21 PM](https://github.com/Jay1194/Deep-Thoughts/assets/105843570/fe650d7b-9a0a-444e-8ae2-830226ce6ce1)\n\n\n\n## Table of Contents\n\n- [Features](#features)\n- [Technologies Used](#technologies-used)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Available Scripts](#available-scripts)\n- [Project Structure](#project-structure)\n- [Learn More](#learn-more)\n- [License](#license)\n\n## Features\n\n- User authentication with JWTs\n- Create and manage thoughts\n- Interact with other users\n- GraphQL API integration with Apollo Server and Client\n- Single-page application routing with React Router\n\n## Technologies Used\n\n- **MongoDB**: NoSQL database for storing user data and thoughts.\n- **Express.js**: Web framework for Node.js.\n- **React**: Front-end library for building user interfaces.\n- **Node.js**: JavaScript runtime for the server.\n- **GraphQL**: Query language for APIs.\n- **Apollo Server**: GraphQL server for Express.js.\n- **Apollo Client**: GraphQL client for React.\n- **React Router**: Declarative routing for React applications.\n- **Concurrently**: Run multiple processes with a single command.\n- **jsonwebtoken**: JSON Web Token implementation for authentication.\n- **jwt-decode**: Decode JWT tokens.\n- **faker**: Generate fake data for development.\n- **nodemon**: Automatically restart Node.js server on file changes.\n\n## Installation\n\n1. Clone the repository:\n    ```sh\n    git clone https://github.com/yourusername/deep-thoughts.git\n    ```\n\n2. Navigate to the project directory:\n    ```sh\n    cd deep-thoughts\n    ```\n\n3. Install the dependencies:\n    ```sh\n    npm install\n    ```\n\n4. Start the development server:\n    ```sh\n    npm run develop\n    ```\n\n## Usage\n\n- Visit `http://localhost:3000` to view the application.\n- Use the sign-up form to create a new account.\n- Post new thoughts and interact with other users.\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n- `npm run develop`: Runs both the server and client in development mode using concurrently.\n- `npm run server`: Runs the Express.js server only.\n- `npm run client`: Runs the React client only.\n\n  ## Project Structure\n\n```plaintext\ndeep-thoughts/\n├── client/                 # React front-end\n│   ├── public/\n│   └── src/\n│       ├── components/\n│       ├── pages/\n│       ├── utils/\n│       └── App.js\n├── server/                 # Express.js server\n│   ├── config/\n│   ├── models/\n│   ├── schemas/\n│   ├── utils/\n│   └── server.js\n├── .gitignore\n├── package.json\n└── README.md\n```\n## Learn More\n\n- **MongoDB**: NoSQL database for flexible data storage.\n- **Express.js**: Web framework for Node.js applications.\n- **React**: JavaScript library for building user interfaces.\n- **Node.js**: Runtime environment for server-side JavaScript.\n- **GraphQL**: Query language for APIs, enabling precise data requests.\n- **Apollo Server \u0026 Client**: Tools for building GraphQL servers and clients.\n- **React Router**: Navigational components for single-page applications.\n- **Concurrently**: Utility for running multiple processes simultaneously.\n- **jsonwebtoken \u0026 jwt-decode**: Libraries for managing JWTs in authentication.\n- **faker**: Library for generating mock data during development.\n- **nodemon**: Tool for auto-restarting Node.js applications on file changes.\n\n## License\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjay1194%2Fdeep-thoughts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjay1194%2Fdeep-thoughts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjay1194%2Fdeep-thoughts/lists"}