1# Log Viewer 2 3An embeddable log-viewing web component that is customizable and extensible for use in various developer contexts. 4 5## Installation 6 71. Clone the main Pigweed repository: 8 9``` 10git clone https://pigweed.googlesource.com/pigweed/pigweed 11``` 12 132. Navigate to the project directory: 14 15``` 16cd pigweed 17``` 18 193. Install the necessary dependencies: 20 21``` 22source bootstrap.sh 23``` 24 25## Build 26 271. Navigate to the project directory: 28 29``` 30cd pigweed/pigweed_web/log-viewer 31``` 32 33 342. run the following command at the root of the project: 35 36``` 37npm run build 38``` 39 40This will generate the compiled files used in the application. 41 42## Development Mode 43 44To run the application in development mode, use the following command: 45 46``` 47npm run dev -- --host 48``` 49 50This will start the development server and launch the application. The `--host` flag is optional and can be used to specify the host address. 51 52## Usage