Name Date Size #Lines LOC

..--

src/H25-Apr-2025-6,4314,786

test/H25-Apr-2025-1,152869

.gitignoreH A D25-Apr-2025892 4238

README.mdH A D25-Apr-2025895 5232

console.htmlH A D25-Apr-20251.5 KiB5031

index.htmlH A D25-Apr-20251.1 KiB3619

package-lock.jsonH A D25-Apr-2025359.3 KiB8,5698,568

package.jsonH A D25-Apr-20251.7 KiB4847

tsconfig.jsonH A D25-Apr-2025613 2928

vite.config.jsH A D25-Apr-2025701 204

web-test-runner.config.mjsH A D25-Apr-2025994 2825

README.md

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