Sammy is a tiny javascript framework built on top of jQuery inspired by Ruby's Sinatra.
Download Sammy.js and install it in your public javascripts directory. Include it in your document AFTER jQuery.
Like Sinatra, a Sammy application revolves around 'routes'. Routes in Sammy are a little different, though. 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 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 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.
In its coolness, Sammy can handle multiple chained asynchronous callbacks on a route.
this.get('#/', function(context,next) {
$('#main').text('Welcome!');
$.get('/some/url',function(){
// save the data somewhere
next();
});
}, function(context,next) {
$.get('/some/other/url',function(){
// save this data too
next();
});
});
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.
Sammy requires jQuery >= 1.4.1 Get it from: http://jquery.com
Sammy.js was created and is maintained by Aaron Quint
If you're using Sammy.js in production or just for fun, instead of gifting me a beer - please consider donating to the Code for Other People Fund. - you can probably spare a dollar or ten and it will be greatly appreciated.
Sammy is covered by the MIT License. See LICENSE for more information.