Kirill Kaysarov

Results 13 comments of Kirill Kaysarov

We use Baobab in isomorphic application. When we get html code from server, we rerun all state operations (we use cerebral-like state manager - https://github.com/markuplab/appstate). But main problem is http...

Look at example: ``` var actions = require('./actions'); // Signal exports.page = [ actions.setFirstName, actions.setLastName, actions.setComputed ]; // actions.js module.exports = { setState (args, state) { state.set('first', 'Kirill'); }, getState...

https://github.com/markuplab/catbee-todomvc - Isomorphic TodoMVC based on Baobab

Yes, i have some thing that require from node_modules. I use local package for easy require config file. It's require yaml files. And build system in catbee framework also require...

entry point require('config') // inside node_modules --> its require('./base.yml')

https://github.com/markuplab/catbee-boilerplate - I don't test, but i think you can use it as example because it's based on our current project with yaml and es7. Clone, npm i and node...

Ok, thanx for you help. It's critical problem for us, because our framework system based on browserify. Will be wait @substack response.

@substack Can you join in this discussion? We still have problem.