Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binarymash/evelyn-management-ui
Feature toggling framework and application
https://github.com/binarymash/evelyn-management-ui
feature-flags feature-toggle feature-toggles react
Last synced: 9 days ago
JSON representation
Feature toggling framework and application
- Host: GitHub
- URL: https://github.com/binarymash/evelyn-management-ui
- Owner: binarymash
- License: mit
- Created: 2018-04-30T09:56:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T05:59:55.000Z (2 months ago)
- Last Synced: 2024-11-09T06:30:11.237Z (2 months ago)
- Topics: feature-flags, feature-toggle, feature-toggles, react
- Language: JavaScript
- Homepage:
- Size: 6.03 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 118
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Evelyn Management UI
For documentation [Read the Docs](https://evelyn-management-ui.readthedocs.io/en/latest/).
## Overview
Evelyn is a [feature toggling](https://martinfowler.com/articles/feature-toggles.html) framework. It allows users to decouple software releases from the functional changes within, reducing the risk of deployment and providing rollback functionality.
The Evelyn Stack consists of the following parts:
- A core framework providing the underlying feature toggling functionality, written in C# and targetting .NET Standard 2.0
- A ReST API server and client that expose this functionality over HTTP, written in C# and targetting .NET Standard 2.0. Sample hosts are provided for .NET Core 2.1.
- A management user interface, built on React/Redux/Node.
Evelyn has a modular architecture which allows for flexible deployment configurations and user extensibility. The core framework is built around CQRS and Event Sourcing: implementations are provided for an in-memory event store and for Greg Young's [Event Store](https://eventstore.org/); you can plug in your own event store integration.
This project is pre-release: things might break at any moment; APIs might change; it is insecure.
## This Repository
This repository contains the source code for the management UI. You can learn more about this at [Read the Docs](https://evelyn-management-ui.readthedocs.io/en/latest/).
For more information on the core framework and the ReST API server and client head over to [https://github.com/binarymash/evelyn](https://github.com/binarymash/evelyn)