git ssb

2+

mixmix / ticktack



Tree: f3409d0dc8b00fb3846783f9e510314430c1ecd1

Files: f3409d0dc8b00fb3846783f9e510314430c1ecd1 / 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