Skip to content

docs(website): add debugging section with community packages #675

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions website/docs/debugging/communityPackages.md
Original file line number Diff line number Diff line change
@@ -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 Async Storage support. The debugger allows to print the Async Storage content to the console, and clear it completely.

1 change: 1 addition & 0 deletions website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
},
};