Fork me on GitHub

THE SITE HAS MOVED TO Sammyjs.org. YOU ARE BEING REDIRECTED

Sammy

What

Sammy is a tiny javascript framework built on top of jQuery. It’s RESTful Evented JavaScript.

Why

jQuery is probably the fastest, most robust way to abstract basic low-level Javascript functionality that every Javascript developer needs. However, it really remains low-level and does not imply any structure or organization for larger scale Javascript applications.

Working heavily with Sinatra, I realized that the simple route definitions and structure it provided could be a great fit with jQuery/JavaScript. Not only does it allow you to respond to specific URLs, but utilizing the URL hash (#) you can create single page applications that still respond to the back button in your browser (ala Gmail).

I started off on this project thinking “It would be cool to implement Sinatra in JavaScript”. Sammy has become more than that, I’ve tried to follow JS and jQuery conventions instead of Ruby and its made for a small (< 20K) library for defining simple to complex applications.

I see Sammy as a great way to build simple to complex applications built upon RESTful data stores like CouchDB or Cloudkit. Theres an example of Cloudkit integration in examples/backend/

Basics

A Sammy application revolves around ‘routes’. Routes consist of a verb, a path, and a callback (See more in ‘Routes’). Not only can you define ‘get’ and ‘post’ routes, but you can also bind routes to custom events triggered by your application.

You set up a Sammy Application by passing a Function to the $.sammy (which is a shortcut for the Sammy.Application constructor).

$.sammy(function() {

  this.get('#/', function() {
    $('#main').text('Welcome!');
  });

});

Inside of the ‘app’ function() this is the Application. This is where you can configure the application and add routes.

Above, we defined a get() route. When the browser is pointed to #/ the function passed to that route will be run. Inside of the route function, this is a Sammy.EventContext. EventContext has a bunch of special methods and properties including a params hash, the ability to redirect, render partials, and more.

Once you’ve defined an application the only thing left to do is run it. The best practice behavior is to encapsulate run() in a document.ready block:

var app = $.sammy(...)

$(function() {
  app.run();
});

This will guarantee that the DOM is loaded before we try to apply functionality to it.

More!

I’ve split up the information into a couple different sections.

Ways to stay informed/get in contact: