guvnor
Version:
A node process manager that isn't spanners all the way down
17 lines (15 loc) • 329 B
JavaScript
var View = require('ampersand-view')
var templates = require('../../templates')
module.exports = View.extend({
template: templates.includes.host.system,
bindings: {
'model.uptimeFormatted': {
type: 'text',
hook: 'uptime'
},
'model.cpuSpeed': {
type: 'text',
hook: 'cpuSpeed'
}
}
})