From c3efb7b45edbdefa9d14da1f337480291eea8111 Mon Sep 17 00:00:00 2001 From: John Knox Date: Thu, 2 May 2019 08:50:52 -0700 Subject: [PATCH] Fix broken link Summary: n/a Reviewed By: danielbuechele Differential Revision: D15182855 fbshipit-source-id: 251d25a5542d66cb238b74cfe9b99936597d85e5 --- docs/stetho.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/stetho.md b/docs/stetho.md index e355316ac..3d7d21c77 100644 --- a/docs/stetho.md +++ b/docs/stetho.md @@ -6,6 +6,6 @@ sidebar_label: Stetho Guidance In 2015, we introduced [Stetho](http://facebook.github.io/stetho/), an Android debugging bridge built on top of Chrome dev tools. While it was a valuable tool to us and many members of the community, we felt that it limited us in what we could do with it. Stetho is Android-only and while Chrome dev tools gave us a nice foundation to build upon, they also limited us in what we could build. Stetho is an Android tool and Chrome dev tools is built for web developers. This means we can only provide a good experience for the intersection of those two development environments, which was very limiting. With Flipper being built as a standalone app, we can do more things, like handling adb connections and supporting iOS, which wasn't easily achievable with stetho. -This is why we built Flipper. We wanted to create a platform that gives us all the flexibility we need to build more advanced features and support for iOS. One of Flipper's core concepts is its extensibility using [plugins](create-plugin.md). Plugins are written in react and we provide a set of ready-to-use UI components that allows developers to build great plugin UIs with a few lines of code. +This is why we built Flipper. We wanted to create a platform that gives us all the flexibility we need to build more advanced features and support for iOS. One of Flipper's core concepts is its extensibility using [plugins](extending/index.md). Plugins are written in react and we provide a set of ready-to-use UI components that allows developers to build great plugin UIs with a few lines of code. While offering many new features, Flipper also already covers most of the features provided by Stetho. This includes network and layout inspection and an advanced log viewer. We are committed to continuously improving Flipper with new features and plugins, however we are aware that not all stetho features are currently supported by Flipper. If you are using a particular feature of Stetho which isn't supported by Flipper, we are more than happy to hear about your use-case. Stetho will continue to work and we are not abandoning it so you can choose the tool that fits your needs best. We are confident that Flipper will work well for most use-cases and are more than happy to accept contributions from the open-source community adding new features.