git ssb

2+

mixmix / ticktack



Tree: 815a0b039bd2ce2cfe6eeec00539945cb5660fd1

Files: 815a0b039bd2ce2cfe6eeec00539945cb5660fd1 / main.js

528 bytesRaw
1const combine = require('depject')
2const entry = require('depject/entry')
3const nest = require('depnest')
4
5const ticktack = require('./')
6const patchcore = require('patchcore')
7
8// polyfills
9require('setimmediate')
10
11// from more specialized to more general
12const sockets = combine(
13 ticktack,
14 patchcore
15)
16debugger
17
18const api = entry(sockets, nest('app.html.app', 'first'))
19
20const app = api.app.html.app()
21
22// TODO (mix) : once goTo/ router is swapping pages, attach the app to the page here
23// document.body.appendChild(app)
24

Built with git-ssb-web