JS 的 MVC 框架 Derby.js

码农软件 · 软件分类 · JavaScript MVC 框架 · 2019-03-15 20:14:40

软件介绍

DerbyJS 是一个 MVC 框架,帮助编写实时,交互的应用。可以运行在 Node.js 或者浏览器环境中。

示例代码:

hello.js

var app = module.exports = require('derby').createApp('hello', __filename);
app.loadViews(__dirname);

// the route is being rendered both on server and client side
app.get('/', function(page, model) {
  // subscription enables data synchronization
  model.subscribe('hello.message', function() {
    page.render();
  });
});

本文地址:https://codercto.com/soft/d/1428.html

Machine Learning

Machine Learning

Kevin Murphy / The MIT Press / 2012-9-18 / USD 90.00

Today's Web-enabled deluge of electronic data calls for automated methods of data analysis. Machine learning provides these, developing methods that can automatically detect patterns in data and then ......一起来看看 《Machine Learning》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器