{"id":46754813,"url":"https://github.com/fahimshariar28/feelfusion","last_synced_at":"2026-03-09T21:30:57.352Z","repository":{"id":291082284,"uuid":"976497953","full_name":"fahimshariar28/feelfusion","owner":"fahimshariar28","description":"FeelFusion is a modern web application built with Next.js and Ant Design that analyzes the sentiment of text using Azure Text Analytics API. The application provides real-time sentiment analysis, visualization, and history tracking.","archived":false,"fork":false,"pushed_at":"2025-08-19T12:55:59.000Z","size":209,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-19T14:49:22.610Z","etag":null,"topics":["ai","azure","azure-language","azure-language-services","github","text-analysis","text-to-speech"],"latest_commit_sha":null,"homepage":"https://feelfusion.vercel.app","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/fahimshariar28.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["fahimshariar28"]}},"created_at":"2025-05-02T08:02:56.000Z","updated_at":"2025-08-19T12:56:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"4cf077c7-905a-4125-9851-f14c704a3b97","html_url":"https://github.com/fahimshariar28/feelfusion","commit_stats":null,"previous_names":["fahimshariar28/feelfusion"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fahimshariar28/feelfusion","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fahimshariar28%2Ffeelfusion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fahimshariar28%2Ffeelfusion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fahimshariar28%2Ffeelfusion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fahimshariar28%2Ffeelfusion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fahimshariar28","download_url":"https://codeload.github.com/fahimshariar28/feelfusion/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fahimshariar28%2Ffeelfusion/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30312178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T20:05:46.299Z","status":"ssl_error","status_checked_at":"2026-03-09T19:57:04.425Z","response_time":61,"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":["ai","azure","azure-language","azure-language-services","github","text-analysis","text-to-speech"],"created_at":"2026-03-09T21:30:56.673Z","updated_at":"2026-03-09T21:30:57.345Z","avatar_url":"https://github.com/fahimshariar28.png","language":"JavaScript","funding_links":["https://github.com/sponsors/fahimshariar28"],"categories":[],"sub_categories":[],"readme":"# FeelFusion: Sentiment Analysis Application\n\nFeelFusion is a modern web application built with Next.js and Ant Design that analyzes the sentiment of text using Azure Text Analytics API. The application provides real-time sentiment analysis, visualization, and history tracking.\n\n## Features\n\n- **Real-time Sentiment Analysis**: Analyze text sentiment with Azure Text Analytics API\n- **Multi-language Support**: Support for English, Bangla, Hindi, Urdu, and Arabic\n- **Sentiment Visualization**: View sentiment scores with progress bars and charts\n- **History Tracking**: Keep track of previous analyses with local storage\n- **Data Visualization**: View sentiment trends and distribution with interactive charts\n- **Text-to-Speech**: Listen to your text with sentiment-adjusted voice\n- **Dark Mode**: Toggle between light and dark themes\n- **Responsive Design**: Works on desktop and mobile devices\n- **Confetti Effect**: Celebration animation for positive sentiments\n\n## Prerequisites\n\nBefore you begin, ensure you have:\n\n1. Node.js 16.x or later installed\n2. An Azure account with Text Analytics API set up\n3. API Key and Endpoint URL from Azure Text Analytics\n\n## Getting Started\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/yourusername/feelfusion.git\ncd feelfusion\n```\n\n### 2. Install Dependencies\n\n```bash\nnpm install\n```\n\n### 3. Set Up Environment Variables\n\nCreate a `.env.local` file in the root directory with the following variables:\n\n```bash\nTEXT_API_KEY = your_azure_text_api_key\nTEXT_ENDPOINT = your_azure_text_endpoint\n```\n\n### 4. Run the Development Server\n\n```bash\nnpm run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) in your browser to see the application.\n\n## Project Structure\n\n```\nfeelfusion/\n├── app/\n│ ├── actions.js # Server actions for sentiment analysis\n│ ├── env.js # Environment variable handling\n│ ├── globals.css # Global styles\n│ ├── layout.js # Root layout component\n│ └── page.js # Main page component\n├── components/\n│ ├── confetti-effect.js # Confetti animation for positive sentiment\n│ ├── language-selector.js # Language selection component\n│ ├── sentiment-chart.js # Charts for sentiment visualization\n│ ├── sentiment-emoji.js # Emoji display based on sentiment\n│ ├── sentiment-history.js # History tracking component\n│ ├── text-suggestions.js # Example text suggestions\n│ ├── text-to-speech.js # Text-to-speech functionality\n│ ├── theme-provider.js # Theme context provider\n│ └── theme-toggle.js # Theme toggle button\n├── public/\n│ └── ... # Static assets\n├── .env.local # Environment variables (not in repo)\n├── next.config.js # Next.js configuration\n├── package.json # Project dependencies\n└── README.md # Project documentation\n```\n\n## How It Works\n\n1. The user enters text in the input field and selects a language\n2. The application sends the text to Azure Text Analytics API via a server action\n3. The API returns sentiment scores (positive, neutral, negative) and an overall sentiment\n4. The application displays the results with visual indicators and stores them in history\n5. The user can view insights, export history, and use text-to-speech functionality\n\n## Customization\n\n### Adding More Languages\n\nTo add more languages, update the `languages` array in `components/language-selector.js` and add corresponding suggestions in `components/text-suggestions.js`.\n\n### Changing Theme Colors\n\nThe application uses Ant Design's theme system. You can customize colors by modifying the theme provider in `components/theme-provider.js`.\n\n## Deployment\n\n### Deploy to Vercel\n\nThe easiest way to deploy the application is with Vercel:\n\n```bash\nnpm install -g vercel\nvercel\n```\n\nDon't forget to add your environment variables in the Vercel dashboard.\n\n### Other Deployment Options\n\nYou can also deploy to other platforms like Netlify, AWS Amplify, or traditional hosting by building the application:\n\n```bash\nnpm run build\nnpm start\n```\n\n## Troubleshooting\n\n### API Connection Issues\n\nIf you encounter issues connecting to the Azure Text Analytics API:\n\n1. Verify your API key and endpoint URL\n2. Check if your Azure subscription is active\n3. Ensure your IP is not blocked by Azure\n\n### Browser Compatibility\n\nThe application works best in modern browsers. For text-to-speech functionality, Chrome or Edge is recommended.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgments\n\n- [Next.js](https://nextjs.org/) - The React framework\n- [Ant Design](https://ant.design/) - UI component library\n- [Azure Text Analytics](https://azure.microsoft.com/services/cognitive-services/text-analytics/) - Sentiment analysis API\n- [Framer Motion](https://www.framer.com/motion/) - Animation library\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffahimshariar28%2Ffeelfusion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffahimshariar28%2Ffeelfusion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffahimshariar28%2Ffeelfusion/lists"}