Skip to content

Commit 098f8ce

Browse files
committed
Added framework zune
1 parent 2820735 commit 098f8ce

File tree

3 files changed

+97
-0
lines changed

3 files changed

+97
-0
lines changed

frameworks/keyed/zune/index.html

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Zune-keyed</title>
6+
<link href="/css/currentStyle.css" rel="stylesheet" />
7+
</head>
8+
<body>
9+
<div class="container" id="main">
10+
<div class="jumbotron">
11+
<div class="row">
12+
<div class="col-md-6">
13+
<h1>Zune-keyed</h1>
14+
</div>
15+
<div class="col-md-6">
16+
<div class="row">
17+
<div class="col-sm-6 smallpad">
18+
<button type="button" class="btn btn-primary btn-block" id="run" data-click="bench: 'run'">Create 1,000 rows</button>
19+
</div>
20+
<div class="col-sm-6 smallpad">
21+
<button type="button" class="btn btn-primary btn-block" id="runlots" data-click="bench: 'runLots'">Create 10,000 rows</button>
22+
</div>
23+
<div class="col-sm-6 smallpad">
24+
<button type="button" class="btn btn-primary btn-block" id="add" data-click="bench: 'add'">Append 1,000 rows</button>
25+
</div>
26+
<div class="col-sm-6 smallpad">
27+
<button type="button" class="btn btn-primary btn-block" id="update" data-click="bench: 'update'">Update every 10th row</button>
28+
</div>
29+
<div class="col-sm-6 smallpad">
30+
<button type="button" class="btn btn-primary btn-block" id="clear" data-click="bench: 'clear'">Clear</button>
31+
</div>
32+
<div class="col-sm-6 smallpad">
33+
<button type="button" class="btn btn-primary btn-block" id="swaprows" data-click="bench: 'swapRows'">Swap Rows</button>
34+
</div>
35+
</div>
36+
</div>
37+
</div>
38+
</div>
39+
<table class="table table-hover table-striped test-data">
40+
<tbody data-tpl="bench"></tbody>
41+
</table>
42+
<span class="preloadicon glyphicon glyphicon-remove" aria-hidden="true"></span>
43+
<template data-name="bench">
44+
<tr>
45+
<td class="col-md-1">${id}</td>
46+
<td class="col-md-4"><a data-click="bench: 'select'">${label}</a></td>
47+
<td class="col-md-1"><a data-click="bench: 'remove'"><span class="glyphicon glyphicon-remove" aria-hidden="true" /></a></td>
48+
<td class="col-md-6"></td>
49+
</tr>
50+
</template>
51+
</div>
52+
<script type="module">
53+
(await import('./dist/core/main.js')).default();
54+
</script>
55+
</body>
56+
</html>

frameworks/keyed/zune/package-lock.json

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frameworks/keyed/zune/package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "js-framework-benchmark-zune",
3+
"version": "1.0.0",
4+
"type": "module",
5+
"main": "dist/core/main.js",
6+
"js-framework-benchmark": {
7+
"frameworkVersionFromPackage": "zune"
8+
},
9+
"scripts": {
10+
"build-dev": "exit 0",
11+
"build-prod": "exit 0"
12+
},
13+
"keywords": [
14+
"zune"
15+
],
16+
"license": "Apache-2.0",
17+
"homepage": "https://github.com/krausest/js-framework-benchmark",
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/krausest/js-framework-benchmark.git"
21+
},
22+
"dependencies": {
23+
"zune": "1.0.8"
24+
}
25+
}

0 commit comments

Comments
 (0)