index.html
<Body:>
<h1>Hello, world!</h1>
hey there!<br>
notebook id: {{_page.notebookId}}<br>
cells:<br>
<ul>
{{each _page.cells as #cell,#i}}
<li>
cell {{#i}} {{#cell.id}}
</li>
{{/each}}
</ul>
<a on-click="addCell()">Add Cell</a>
package.json
{
"name": "notebook",
"version": "1.0.0",
"description": "Mini derby-app",
"main": "index.js",
"scripts": {
"start": "node server.js"
},
"keywords": [
"derby", "mini"
],
"dependencies": {
"derby-starter": "^0.2.6",
"derby-debug": "^0.1.0"
},
"author": "",
"license": "MIT"
}