This is an example of capturing a POST, we have two forms, the 1st will be intercepted by the framework, the 2nd will not and will be passed through to the server

var app = new routes();

app.get('post.html', function(e) {
  alert('Captured the POST, value = ' + e.values.test);
});

This will be handled by LeviRoutes.

This will be handled by the server.