Skip to content

Commit 82e0a46

Browse files
authored
Make about.html text reflect currently enabled workloads (#381)
* make text reflect currently enabled workloads
1 parent f6f67e0 commit 82e0a46

File tree

16 files changed

+74
-12
lines changed

16 files changed

+74
-12
lines changed

about.html

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1 class="section-header">About Speedometer 3</h1>
2323
web browser engine projects.
2424
</p>
2525
<p>
26-
The following high level user journeys are implemented in the current version. Each of these journeys has one or more workloads which test important aspects of it - for example commonly used patterns, frameworks, or
26+
The following high level user journeys are implemented in the current version. Each of these journeys has one or more workloads which test important aspects of it for example commonly used patterns, frameworks, or
2727
technologies.
2828
</p>
2929
<ul>
@@ -32,32 +32,36 @@ <h1 class="section-header">About Speedometer 3</h1>
3232
<li>Measures the time to add, complete, and remove 100 todo items in a basic list.</li>
3333
<li>Each example implements the same todo application (TodoMVC) using different techniques and frameworks.</li>
3434
<li>
35-
Workloads: <a href="resources/todomvc/vanilla-examples/javascript-es5/readme.md" target="_blank">TodoMVC-JavaScript-ES5</a>,
36-
<a href="resources/todomvc/vanilla-examples/javascript-web-components/readme.md" target="_blank">TodoMVC-WebComponents</a>,
37-
<a href="resources/todomvc/architecture-examples/react-complex/readme.md" target="_blank">TodoMVC-React-Complex-DOM</a>,
38-
<a href="resources/todomvc/architecture-examples/backbone/readme.md" target="_blank">TodoMVC-Backbone</a>, <a href="resources/todomvc/architecture-examples/angular/readme.md" target="_blank">TodoMVC-Angular</a>,
39-
<a href="resources/todomvc/architecture-examples/vue/readme.md" target="_blank">TodoMVC-Vue</a>, <a href="resources/todomvc/architecture-examples/jquery/readme.md" target="_blank">TodoMVC-jQuery</a>,
40-
<a href="resources/todomvc/architecture-examples/preact/readme.md" target="_blank">TodoMVC-Preact</a>, <a href="resources/todomvc/architecture-examples/svelte/readme.md" target="_blank">TodoMVC-Svelte</a>,
41-
<a href="resources/todomvc/architecture-examples/lit/readme.md" target="_blank">TodoMVC-Lit</a>
35+
Workloads: <a href="resources/todomvc/vanilla-examples/javascript-es5/README.md" target="_blank">TodoMVC-JavaScript-ES5</a>,
36+
<a href="resources/todomvc/vanilla-examples/javascript-es6-webpack-complex/README.md" target="_blank">TodoMVC-JavaScript-ES6-Webpack-Complex-DOM</a>,
37+
<a href="resources/todomvc/vanilla-examples/javascript-web-components/README.md" target="_blank">TodoMVC-WebComponents</a>,
38+
<a href="resources/todomvc/architecture-examples/react-complex/README.md" target="_blank">TodoMVC-React-Complex-DOM</a>,
39+
<a href="resources/todomvc/architecture-examples/react-redux/README.md" target="_blank">TodoMVC-React-Redux</a>,
40+
<a href="resources/todomvc/architecture-examples/backbone/README.md" target="_blank">TodoMVC-Backbone</a>,
41+
<a href="resources/todomvc/architecture-examples/angular-complex/README.md" target="_blank">TodoMVC-Angular-Complex-DOM</a>,
42+
<a href="resources/todomvc/architecture-examples/vue/README.md" target="_blank">TodoMVC-Vue</a>, <a href="resources/todomvc/architecture-examples/jquery/README.md" target="_blank">TodoMVC-jQuery</a>,
43+
<a href="resources/todomvc/architecture-examples/preact-complex/README.md" target="_blank">TodoMVC-Preact-Complex-DOM</a>,
44+
<a href="resources/todomvc/architecture-examples/svelte-complex/README.md" target="_blank">TodoMVC-Svelte-Complex-DOM</a>,
45+
<a href="resources/todomvc/architecture-examples/lit-complex/README.md" target="_blank">TodoMVC-Lit-Complex-DOM</a>
4246
</li>
4347
</ul>
4448
<li>Editing rich text</li>
4549
<ul>
4650
<li>Loading and styling text inside WYSIWYG and code editors.</li>
47-
<li>Workloads: <a href="resources/editors/readme.md" target="_blank">Editor-CodeMirror</a>, <a href="resources/editors/readme.md" target="_blank">Editor-TipTap</a></li>
51+
<li>Workloads: <a href="resources/editors/README.md" target="_blank">Editor-CodeMirror</a>, <a href="resources/editors/README.md" target="_blank">Editor-TipTap</a></li>
4852
</ul>
4953
<li>Rendering charts</li>
5054
<ul>
5155
<li>Loading and interacting with SVG and canvas charts.</li>
5256
<li>
53-
Workloads: <a href="resources/charts/readme.md" target="_blank">Charts-observable-plot</a>, <a href="resources/charts/readme.md" target="_blank">Charts-chartjs</a>,
54-
<a href="resources/react-stockcharts/readme.md" target="_blank">React-Stockcharts-SVG</a>, <a href="resources/perf.webkit.org/readme.md" target="_blank">Perf-Dashboard</a>
57+
Workloads: <a href="resources/charts/README.md" target="_blank">Charts-observable-plot</a>, <a href="resources/charts/README.md" target="_blank">Charts-chartjs</a>,
58+
<a href="resources/react-stockcharts/README.md" target="_blank">React-Stockcharts-SVG</a>, <a href="resources/perf.webkit.org/README.md" target="_blank">Perf-Dashboard</a>
5559
</li>
5660
</ul>
5761
<li>Reading a news site</li>
5862
<ul>
5963
<li>Navigating across pages and interacting with a typical looking news site.</li>
60-
<li>Workloads: <a href="resources/newssite/news-next/readme.md" target="_blank">NewsSite-Next</a>, <a href="resources/newssite/news-nuxt/readme.md" target="_blank">NewsSite-Nuxt</a></li>
64+
<li>Workloads: <a href="resources/newssite/news-next/README.md" target="_blank">NewsSite-Next</a>, <a href="resources/newssite/news-nuxt/README.md" target="_blank">NewsSite-Nuxt</a></li>
6165
</ul>
6266
</ul>
6367

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Speedometer 3.0: TodoMVC: Lit Complex DOM
2+
3+
## Description
4+
5+
This application embeds the Lit implementation of the TodoMVC application in a static UI shell that mimics a complex web page.
6+
7+
Please refer to the [Lit README.md](../lit/README.md) for more information on the Lit TodoMVC implementation.
8+
9+
Please refer to the [big-dom-generator README.md](../../big-dom-generator/README.md) for more information on the UI shell.
10+
11+
## Build steps
12+
13+
Big-dom-generator and standalone Lit TodoMVC need to be built before building the Lit Complex DOM TodoMVC.
14+
15+
```
16+
terminal
17+
1. pushd ../../big-dom-generator && npm install && npm run build && popd
18+
2. pushd ../lit && npm install && npm run build && popd
19+
3. npm run build
20+
```
21+
22+
## Local preview
23+
24+
```
25+
terminal:
26+
1. npm run serve
27+
browser:
28+
1. http://localhost:8000
29+
```

0 commit comments

Comments
 (0)