Javascript框架:Sammy.js
jopen
11年前
这是非常简单和小型的Web JavaScript框架。这个库提供了便于理解和阅读的API。
-
小型
Sammy的核心只有 16K 。压缩之后 5.2K
-
模块化
Sammy构建在一个插件和适配器系统之上。只要包含你需要的代码。它也很容易提取自己的代码为可重用的插件。
-
简洁
整个API被设计成容易理解和阅读。 Sammy 拥有良好的封装和应用程序设计。
-
FUN
What's the real point of development if its not enjoyable. Sammy tries to follow the MATZ approach. It is optimized for developer happiness.
// initialize the application var app = Sammy('#main', function() { // include a plugin this.use('Mustache'); // define a 'route' this.get('#/', function() { // load some data this.load('posts.json') // render a template .renderEach('post.mustache') // swap the DOM with the new content .swap(); }); });