Skip to content

Commit 4cfa437

Browse files
author
Daniel de la Cruz
committed
Update README.md
1 parent f332d27 commit 4cfa437

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
# react-feature-toggle
2-
3-
## Introduction
42
React Feature Toggle is a proof of concept of a [Higher Order Component](https://gist.github.com/sebmarkbage/ef0bf1f338a7182b6775) to implement [feature toggles](http://martinfowler.com/bliki/FeatureToggle.html).
53

4+
##What is a feature toggle?
5+
**_Continuous deployment_** is the process of testing, integrating, and deploying software in rapid cycles in order to deliver bug fixes and new features to customers as quickly as possible. It gained popular acceptance as a cornerstone of extreme programming and agile development. It is very popular among Software as a Service providers.
6+
7+
A **_feature toggle_** system allows you to integrate features into your codebase even before they're finished and ready to release. During development, the features are toggled off by default. In order to turn them on, you must enable them manually. Using this method, you can deploy unfinished or untested changes into your production system without interfering with the user experience.
8+
9+
Feature toggles can allow software integration cycles that run in weeks, days, or even hours, as opposed to months or years. They are an essential component in a broader continuous integration system.
10+
([via](https://github.com/ericelliott/feature-toggle))
11+
612
## How to use it
713
First of all, create your component as if it were to receive by props an array with feature toggles:
814

0 commit comments

Comments
 (0)