git ssb

2+

mixmix / ticktack



Tree: 7d3eedbfb460afbb17537a609239a3d957ecc662

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