{"id":25022082,"url":"https://github.com/sundaramrai/lingoleap","last_synced_at":"2026-04-11T01:46:18.802Z","repository":{"id":269158930,"uuid":"863396312","full_name":"sundaramrai/LingoLeap","owner":"sundaramrai","description":"LingoLeap is a full-stack web application which helps children with speech misarticulation improve their Hindi-speaking skills through structured lessons and exercises.","archived":false,"fork":false,"pushed_at":"2024-09-26T09:01:15.000Z","size":1511,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-05T13:43:08.130Z","etag":null,"topics":["javascript","mailtrap","mongodb","nextjs","nodejs","tailwindcss"],"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/sundaramrai.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-09-26T08:17:04.000Z","updated_at":"2024-09-26T09:03:33.000Z","dependencies_parsed_at":"2024-12-21T11:31:14.291Z","dependency_job_id":"199b85de-fd44-4d98-8934-905198d3c719","html_url":"https://github.com/sundaramrai/LingoLeap","commit_stats":null,"previous_names":["sundaramrai/lingoleap"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sundaramrai%2FLingoLeap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sundaramrai%2FLingoLeap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sundaramrai%2FLingoLeap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sundaramrai%2FLingoLeap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sundaramrai","download_url":"https://codeload.github.com/sundaramrai/LingoLeap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246314116,"owners_count":20757457,"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":["javascript","mailtrap","mongodb","nextjs","nodejs","tailwindcss"],"created_at":"2025-02-05T13:40:03.072Z","updated_at":"2026-04-11T01:46:18.783Z","avatar_url":"https://github.com/sundaramrai.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u003cimg src=\"https://lleap.vercel.app/lingoleap.png\" alt=\"LingoLeap Logo\" width=\"32\" height=\"32\" style=\"vertical-align: middle; margin-right: 8px;\"\u003e LingoLeap\n\u003e A comprehensive web application helping children with speech misarticulation improve their Hindi-speaking skills through interactive therapy and gamified learning\n\n[![Next.js](https://img.shields.io/badge/Next.js-13+-000000?style=flat-square\u0026logo=next.js\u0026logoColor=white)](https://nextjs.org/)\n[![Node.js](https://img.shields.io/badge/Node.js-18+-339933?style=flat-square\u0026logo=node.js\u0026logoColor=white)](https://nodejs.org/)\n[![MongoDB](https://img.shields.io/badge/MongoDB-4.4+-47A248?style=flat-square\u0026logo=mongodb\u0026logoColor=white)](https://mongodb.com/)\n[![React](https://img.shields.io/badge/React-18+-61DAFB?style=flat-square\u0026logo=react\u0026logoColor=black)](https://reactjs.org/)\n\n## 🌟 Overview\n\nLingoLeap is a full-stack web application specifically designed to support children with speech misarticulation in Hindi-speaking communities. By combining modern web technologies with speech recognition capabilities, gamification elements, and comprehensive therapy resources, LingoLeap creates an engaging platform that makes speech therapy accessible, interactive, and effective.\n\n## 🏗️ Technology Stack\n\n### Frontend\n- **Framework**: Next.js 13+ with React 18+\n- **Styling**: CSS3 with responsive design principles\n- **Speech Recognition**: Web Speech API integration\n- **State Management**: React hooks and context\n- **Deployment**: Optimized for production deployment\n\n### Backend\n- **Runtime**: Node.js with Express.js\n- **Database**: MongoDB with Mongoose ODM\n- **Authentication**: JWT-based secure authentication\n- **API**: RESTful API architecture\n- **Security**: Environment variable configuration for sensitive data\n\n## 🚀 Quick Start\n\n### Prerequisites\n- Node.js (v18+ recommended)\n- MongoDB (local installation or cloud instance)\n- npm, yarn, pnpm, or bun package manager\n\n### Installation\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/sundaramrai/LingoLeap.git\n   cd LingoLeap\n   ```\n\n2. **Install dependencies for both frontend and backend**\n   ```bash\n   # Install frontend dependencies\n   npm install\n   \n   # Install backend dependencies\n   cd Backend\n   npm install\n   ```\n\n3. **Environment Configuration**\n   \n   Create `.env` files in both the main directory and Backend directory:\n   \n   **Main directory `.env`:**\n   ```env\n   MONGO_URI=your_mongodb_connection_string\n   TOKEN_SECRET=your_jwt_secret_token\n   DOMAIN=http://localhost:3000\n   ```\n   \n   **Backend directory `.env`:**\n   ```env\n   MONGO_URI=your_mongodb_connection_string\n   JWT_SECRET=your_jwt_secret_token\n   JWT_LIFETIME=24h\n   DOMAIN=http://localhost:5000\n   ```\n\n4. **Start the application**\n   \n   You'll need two terminal windows/tabs:\n   \n   **Terminal 1 - Frontend (Next.js):**\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   # or\n   pnpm dev\n   # or\n   bun dev\n   ```\n   \n   **Terminal 2 - Backend (Node.js):**\n   ```bash\n   cd Backend\n   npm start\n   ```\n\n5. **Access the application**\n   - Frontend: [http://localhost:3000](http://localhost:3000)\n   - Backend API: [http://localhost:5000](http://localhost:5000)\n\n```\n## 📜 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details\n\n---\n\n**Made with ❤️ for children with speech challenges in Hindi-speaking communities**\n\n*LingoLeap - Empowering every child to find their voice*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsundaramrai%2Flingoleap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsundaramrai%2Flingoleap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsundaramrai%2Flingoleap/lists"}