Summary: Created a quick-and-dirty flipper-dump command, to verify that the stand alone flipper-server-core can do it's job without the Electron Flipper Reviewed By: passy Differential Revision: D31543516 fbshipit-source-id: ce8e37316ab5f09700421bcf1c7830266e02c999
21 lines
708 B
Markdown
21 lines
708 B
Markdown
# flipper-dump
|
|
|
|
Stand alone Flipper command, that uses flipper-server-core to connect to apps and dump all incoming messages.
|
|
|
|
This package is currently a proof of concept and can be used like:
|
|
|
|
`yarn start --device='iPhone 12' --client='Instagram' --plugin='AnalyticsLogging'`
|
|
|
|
Or to capture all output to a file (meta messages will be printed on STDERR):
|
|
|
|
`yarn --silent start --device='iPhone 12' --client='Instagram' --plugin='AnalyticsLogging' > out.txt`
|
|
|
|
Future features:
|
|
|
|
* [ ] Package so that it can be run using `npx`
|
|
* [ ] Support filter & transformation functions
|
|
* [ ] See `TODO`s in code
|
|
* [ ] Support better configuration
|
|
* [ ] Custom formatting
|
|
* [ ] [FB] Support Certificate Exchange clients
|