Analysis updated 2026-08-08 · repo last pushed 2024-03-14
Turn a new checkout design on and off during testing without redeploying your app.
Quickly disable a feature that's causing problems in production by flipping its flag to false.
Manage simple on/off switches for features across a small team or solo project.
| alexnisnevich/toggler | 0verflowme/learnings | 0verflowme/r2ai | |
|---|---|---|---|
| Language | Python | Python | Python |
| Last pushed | 2024-03-14 | 2022-06-18 | 2025-11-19 |
| Maintenance | Dormant | Dormant | Quiet |
| Setup difficulty | easy | easy | moderate |
| Complexity | 2/5 | 1/5 | 3/5 |
| Audience | developer | researcher | developer |
Figures from each repo's GitHub metadata at analysis time.
Toggler is a lightweight tool for managing feature flags, those on/off switches that let you control which features are visible or active in your app without needing to deploy new code. If you've ever wanted to turn a feature on for some users but not others, or quickly disable something that's causing problems, this is the kind of tool that handles it. The project is built as a simple web service. You interact with it through basic web requests: you send a name for your flag (like "new_checkout" or "dark_mode") and set it to true or false. When your application needs to know whether a feature should be active, it asks the service for the current value of that flag. The README doesn't go into detail about storage or persistence, but the core idea is that it acts as a central place to store and retrieve these boolean states. This would be useful for small teams or solo builders who want basic feature flag functionality without setting up a complex configuration system. For example, if you're rolling out a new design and want an easy way to toggle it on and off during testing, you could store that switch here. It's meant to be simple, the name and description both emphasize that it's a "very simple" tool, so it's best suited for projects that don't need advanced features like user targeting, percentage rollouts, or audit logs. The main tradeoff is simplicity over capability. More full-featured feature flag platforms offer things like gradual rollouts (showing a feature to 10% of users, then 50%, then everyone) or scheduling flags to turn on at a specific time. This project appears to focus on the basics: setting a value and getting it back. That makes it easy to understand and deploy, but limits what you can do with it for more sophisticated release workflows.
Toggler is a simple web service for managing feature flags, on/off switches that control which features are active in your app without deploying new code. You set flags by name and retrieve their true/false values through basic web requests.
Mainly Python. The stack also includes Python.
Dormant — no commits in 2+ years (last push 2024-03-14).
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.