git ssb

2+

mixmix / ticktack



Tree: f72dd7d62b01eb6de4d424c0a1d47a4814ef6599

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