git ssb

2+

mixmix / ticktack



Tree: 8943d5337c4f14e8cf7746fafc3943d3ccc3b1f6

Files: 8943d5337c4f14e8cf7746fafc3943d3ccc3b1f6 / main.js

934 bytesRaw
1const combine = require('depject')
2const entry = require('depject/entry')
3const nest = require('depnest')
4
5// polyfills
6require('setimmediate')
7
8// add inspect right click menu
9require('./context-menu')
10
11// from more specialized to more general
12const sockets = combine(
13 //we always need to have translations first!
14 {translations: require('./translations/sync')},
15 {
16 about: require('./about'),
17 app: require('./app'),
18 blob: require('./blob'),
19 //config: require('./ssb-config'),
20 config: require('./config'),
21 message: require('./message'),
22 router: require('./router'),
23 styles: require('./styles'),
24 state: require('./state/obs'),
25 },
26// require('patch-history'),
27 require('patchcore')
28)
29
30const api = entry(sockets, nest('app.html.app', 'first'))
31
32const app = api.app.html.app()
33
34// TODO (mix) : once app has swapping pages, attach the app to the page here
35// document.body.appendChild(app)
36
37
38
39
40
41

Built with git-ssb-web