DeltaJS is an HTML5 Canvas framework. Quick, simple and very powerful.
It will help you to create games, visualizations, charts and a lot of amazing things.
Native context using
You can add your objects to redrawing & event processing:
var point = {
draw : function(ctx){
ctx.fillRect(0, 0, 1, 1);
}
};
ctx.push(point);