|
| 1 | +# PackLens |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | +PackLens is a web application and Visual Studio Code extension designed for decoding and searching within MessagePack binary files. It provides an intuitive interface for exploring and analyzing data efficiently. |
| 6 | + |
| 7 | +## Features |
| 8 | + |
| 9 | +- 📃 **MessagePack Decoding**: Automatically decode and visualize MessagePack (.msgpack) files with ease. |
| 10 | +- 🔍 **Advanced Search**: Perform custom searches and map data using JavaScript code. |
| 11 | +- 🔄 **Streaming Support**: Efficiently stream and process large MessagePack files without performance bottlenecks. |
| 12 | +- 🎯 **Custom Editor**: Seamlessly integrates with VS Code's editor system for a native experience. |
| 13 | + |
| 14 | +## Installation |
| 15 | + |
| 16 | +### From VS Code Marketplace |
| 17 | + |
| 18 | +1. Open Visual Studio Code. |
| 19 | +2. Navigate to the Extensions view (`Ctrl+Shift+X`). |
| 20 | +3. Search for [PackLens](https://marketplace.visualstudio.com/items?itemName=pejmannikram.packlens). |
| 21 | +4. Click **Install**. |
| 22 | + |
| 23 | +### Web Application |
| 24 | + |
| 25 | +1. Visit [PackLens Web](https://packlens.pejmannik.dev) to use the web interface. |
| 26 | + |
| 27 | +## Usage |
| 28 | + |
| 29 | +### Visual Studio Code Extension |
| 30 | + |
| 31 | +1. Open any `.msgpack` file in VS Code. |
| 32 | +2. The file will automatically open in the PackLens viewer. |
| 33 | +3. Explore the decoded MessagePack data using the interactive interface. |
| 34 | + |
| 35 | + |
| 36 | + |
| 37 | +### Web Application |
| 38 | + |
| 39 | +1. Upload your `.msgpack` file to the web interface. |
| 40 | +2. Use the search and visualization tools to analyze your data. |
| 41 | + |
| 42 | + |
| 43 | + |
| 44 | +## Development |
| 45 | + |
| 46 | +This project uses a monorepo structure with three main packages: |
| 47 | + |
| 48 | +### Project Structure |
| 49 | + |
| 50 | +``` |
| 51 | +packages/ |
| 52 | +├── common/ # Shared types and utilities for decoding and processing files |
| 53 | +├── vsc/ # Visual Studio Code extension |
| 54 | +└── web/ # React-based web interface |
| 55 | +``` |
| 56 | + |
| 57 | +## License |
| 58 | + |
| 59 | +This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details. |
| 60 | + |
| 61 | +## Changelog |
| 62 | + |
| 63 | +See [CHANGELOG.md](CHANGELOG.md) for release notes and version history. |
0 commit comments