nhg
is basically just mercury but without mercury. If you've ever read the source code for mercury (which you should, it's very short) you can see that it is basically a collection of independant modules and some glue code.
This repository breaks out those modules into their own files for browserify
efficiency and uses the modularized versions of the glue code (largely thanks to Ben Drucker). This repository contains no actual code, this is just for npm convenience.
npm install nhg
'use strict';
var document = require('nhg/document');
var h = require('nhg/h');
var State = require('nhg/state');
var Value = require('nhg/value');
var Send = require('nhg/send');
var RunApp = require('nhg/app');
function App() {
return State({
value: Value(0),
channels: {
clicks: incrementCounter
}
});
}
function incrementCounter(state) {
state.value.set(state.value() + 1);
}
App.render = function render(state) {
return h('div.counter', [
'The state ', h('code', 'clickCount'),
' has value: ' + state.value + '.', h('input.button', {
type: 'button',
value: 'Click me!',
'ev-click': Send(state.channels.clicks)
})
]);
};
RunApp(document.body, App(), App.render);
nhg/app
Module: main-loop-app
nhg/array
Module: observ-array
nhg/base-event
Module: value-event/base-event
nhg/computed
Module: observ/computed
nhg/create
Module: virtual-dom/create-element
nhg/delegator
Module: dom-delegator
nhg/diff
Module: virtual-dom/diff
nhg/document
Module: global/document
nhg/event
Module: weakmap-event
nhg/h
Module: virtual-dom/h
nhg/main
Module: main-loop
nhg/thunk
Module: vdom-thunk
nhg/patch
Module: virtual-dom/patch
nhg/router
Module: sour
nhg/send-change
Module: value-event/change
nhg/send-click
Module: value-event/click
nhg/send-event
Module: value-event/value
nhg/send-key
Module: value-event/key
nhg/send-submit
Module: value-event/submit
nhg/send
Module: value-event/event
nhg/state
Module: dover
nhg/struct
Module: observ-struct
nhg/svg
Module: virtual-dom/virtual-hyperscript/svg
nhg/value
Module: observ
nhg/varhash
Module: observ-varhash
nhg/watch
Module: observ/watch
nhg/window
Module: global/window
Do not contribute code to this repository, create or update modules it depends on and make PR's to update the dependency.
npm run test
MIT