git ssb

2+

mixmix / ticktack



Tree: db1b91bf9f68e6db25b325fd506058608428302e

Files: db1b91bf9f68e6db25b325fd506058608428302e / main.js

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

Built with git-ssb-web