Slim.js

Slim.js is a front-end Framework inspired by the famous Slim Framework v2

MIT JS Build Status Code Climate Test Coverage

Slim is a PHP micro-framework that helps you quickly write simple yet powerful web applications and APIs.

Installation

Download the latest release here and use the files within dist folder.

Bower:
$ bower install rbarros/slim.js

Download the production version or the development version.

Use

(function (window) {
  'use strict';

  var $app = new Slim();

  /**
   * Create route hello/:name
   * @param  {string} name
   * @return {void}
   */
  $app.get('/hello/:name', function(name) {
    /**
     * Retrieve options config/<env>.json
     * @type {Object}
     */
    $app.options = options;
    $app.render('views/hello.twig', {
      name: name,
      logo: $app.options.logo
    });
  });
  $app.run();

}(this));

Release History

License

Copyright (c) 2016 Ramon Barros

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.