From 89f47c7f0255285eb041020ea90f1f4830590abb Mon Sep 17 00:00:00 2001 From: lbaldy Date: Sun, 19 Sep 2021 23:34:37 +0200 Subject: [PATCH 1/2] docs(website): add debugging section with community packages add community packages inside the debugging section listing the packages helpful for debugging for Flipper and Non-Flipper projects re #669 --- website/docs/debugging/communityPackages.md | 15 +++++++++++++++ website/sidebars.js | 1 + 2 files changed, 16 insertions(+) create mode 100644 website/docs/debugging/communityPackages.md diff --git a/website/docs/debugging/communityPackages.md b/website/docs/debugging/communityPackages.md new file mode 100644 index 00000000..d81fbc92 --- /dev/null +++ b/website/docs/debugging/communityPackages.md @@ -0,0 +1,15 @@ +--- +id: communityPackages +title: Community Packages +sidebar_label: Community Packages +--- + +### Flipper + +For projects that use Flipper, there is a Flipper plugin called [Advanced Async Storage](https://github.com/lbaldy/flipper-plugin-async-storage-advanced). The plugin provides basic CRUD operations on Async Storage. + + +### Non Flipper + +For the projects which aren't using Flipper, you can use the [React Native Debugger](https://github.com/jhen0409/react-native-debugger) which comes with a built-in AsyncStorage support. The built in debugger allows to print the Async Storage content to the console, and clear it completely. + diff --git a/website/sidebars.js b/website/sidebars.js index dfcd614e..96a270d4 100644 --- a/website/sidebars.js +++ b/website/sidebars.js @@ -2,6 +2,7 @@ module.exports = { docs: { 'Getting started': ['install', 'usage', 'link', 'api'], Advanced: ['advanced/next', 'advanced/jest', 'advanced/brownfield', 'advanced/backup', 'advanced/executor', 'advanced/db_size'], + Debugging: ['debugging/communityPackages'], Help: ['help/troubleshooting'], }, }; From cf1097e6b5c0f0e3383f4c9a622b0790bc22c4f0 Mon Sep 17 00:00:00 2001 From: Tommy Nguyen <4123478+tido64@users.noreply.github.com> Date: Mon, 27 Sep 2021 11:17:20 +0200 Subject: [PATCH 2/2] Update website/docs/debugging/communityPackages.md Co-authored-by: Krzysztof --- website/docs/debugging/communityPackages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/debugging/communityPackages.md b/website/docs/debugging/communityPackages.md index d81fbc92..a5c42ab2 100644 --- a/website/docs/debugging/communityPackages.md +++ b/website/docs/debugging/communityPackages.md @@ -11,5 +11,5 @@ For projects that use Flipper, there is a Flipper plugin called [Advanced Async ### Non Flipper -For the projects which aren't using Flipper, you can use the [React Native Debugger](https://github.com/jhen0409/react-native-debugger) which comes with a built-in AsyncStorage support. The built in debugger allows to print the Async Storage content to the console, and clear it completely. +For the projects which aren't using Flipper, you can use the [React Native Debugger](https://github.com/jhen0409/react-native-debugger) which comes with a built-in Async Storage support. The debugger allows to print the Async Storage content to the console, and clear it completely.