{"id":19642094,"url":"https://github.com/kartikmanimuthu/feature-flags-react-workshop","last_synced_at":"2026-05-13T11:34:35.970Z","repository":{"id":183216734,"uuid":"669783086","full_name":"kartikmanimuthu/feature-flags-react-workshop","owner":"kartikmanimuthu","description":"Feature Flags Workshop (Launch Darkly) - React App Template","archived":false,"fork":false,"pushed_at":"2023-07-23T12:19:43.000Z","size":178,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-26T23:16:45.671Z","etag":null,"topics":["feature-flags","launchdarkly","react"],"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/kartikmanimuthu.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}},"created_at":"2023-07-23T12:16:06.000Z","updated_at":"2023-07-23T12:20:21.000Z","dependencies_parsed_at":"2023-07-30T14:45:42.034Z","dependency_job_id":null,"html_url":"https://github.com/kartikmanimuthu/feature-flags-react-workshop","commit_stats":null,"previous_names":["karthikmani345/feature-flags-react-workshop","kartikmanimuthu/feature-flags-react-workshop"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kartikmanimuthu/feature-flags-react-workshop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartikmanimuthu%2Ffeature-flags-react-workshop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartikmanimuthu%2Ffeature-flags-react-workshop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartikmanimuthu%2Ffeature-flags-react-workshop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartikmanimuthu%2Ffeature-flags-react-workshop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kartikmanimuthu","download_url":"https://codeload.github.com/kartikmanimuthu/feature-flags-react-workshop/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kartikmanimuthu%2Ffeature-flags-react-workshop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32980812,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T11:31:52.688Z","status":"ssl_error","status_checked_at":"2026-05-13T11:31:52.072Z","response_time":115,"last_error":"SSL_read: 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":["feature-flags","launchdarkly","react"],"created_at":"2024-11-11T14:11:31.660Z","updated_at":"2026-05-13T11:34:35.902Z","avatar_url":"https://github.com/kartikmanimuthu.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Feature Flags Workshop - React Template\n\n![License: MIT](https://img.shields.io/badge/License-MIT-green.svg) ![Node version](https://img.shields.io/badge/node-12.x-blue.svg) ![React version](https://img.shields.io/badge/react-17.x-blue.svg)\n\nThis repository is a template for the Feature Flags Workshop. It's a boilerplate project that leverages React to demonstrate the powerful concept of feature flags in a practical, hands-on workshop.\n\n## 🎯 Overview\n\nFeature flags, or feature toggles, are a software development technique that allows developers to enable or disable features in a live environment without deploying new code. This workshop guides you through implementing your first feature flag using React.\n\n## 💾 Prerequisites\n\nEnsure you have the following installed on your local machine:\n\n- Node.js (v12.x or newer)\n- npm (usually bundled with Node.js)\n\n## ⚙️ Installation \u0026 Set Up\n\n1. Clone this repository to your local machine:\n\n   ```\n   git clone https://github.com/\u003cyour-username\u003e/feature-flags-react-workshop.git\n   ```\n\n2. Navigate into the project directory:\n\n   ```\n   cd feature-flags-react-workshop\n   ```\n\n3. Install the project dependencies:\n   ```\n   npm install\n   ```\n\n## 🚀 Running the Application\n\nTo start the server, use the following command:\n\n```\nnpm start\n```\n\nBy default, the application runs on port 3000.\n\n## 🏗️ Usage\n\nUpon setting up the project, you can start implementing feature flags. The workshop exercises are located in the `/docs` directory. Each exercise will guide you through the process of implementing a feature flag.\n\n## 📋 Environment Variables\n\nThis project uses environment variables for configuration. To set up, create a `.env` file in your project root and set the variables with `REACT_APP_` prefix. For example:\n\n```\nREACT_APP_FEATURE_FLAG_CLIENT_ID=ClientID\n```\n\nFor sharing, you can create a `.env.example` file with only the keys. Remember not to commit `.env` file to the version control.\n\n## ✅ Testing\n\nTo run tests, use the following command in the project root directory:\n\n```\nnpm test\n```\n\n## 🤝 Contributing\n\nContributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/\u003cyour-username\u003e/feature-flags-react-workshop/issues) for any outstanding items. If you want to contribute, please follow these steps:\n\n1. Fork this repository.\n2. Create a branch: `git checkout -b \u003cbranch_name\u003e`.\n3. Make your changes and commit them: `git commit -m '\u003ccommit_message\u003e'`\n4. Push to the original branch: `git push origin \u003cproject\u003e/\u003clocation\u003e`\n5. Create the pull request.\n\nAlternatively, see the GitHub documentation on [creating a pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request).\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the `LICENSE.md` file for details.\n\n## 💬 Contact\n\nIf you have any questions, concerns, or feedback - feel free to reach out!\n\n## 🙏 Acknowledgements\n\nWe would like to extend our sincerest gratitude to all the contributors whose efforts have made this project possible. Your contribution to open-source is greatly appreciated! Happy coding!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkartikmanimuthu%2Ffeature-flags-react-workshop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkartikmanimuthu%2Ffeature-flags-react-workshop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkartikmanimuthu%2Ffeature-flags-react-workshop/lists"}