Socket
Socket
Sign inDemoInstall

fist-fistlabs_unit_controller

Package Overview
Dependencies
38
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fist-fistlabs_unit_controller

Base controller as a unit


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
1.48 MB
Created
Weekly downloads
 

Readme

Source

fist-fistlabs_unit_controller Build Status

Fist plugin providing abstract controller

##Basic usage:

//  app.js
var app = fist({
    unitSettings: {
        _fistlabs_unit_controller: {
            viewsDir: '/views',
            engines: {
                '.jade': require('consolidate').jade
            }
        }
    }
});
app.install('fist-fistlabs_unit_controller');
// fist_plugins/units/controllers/news.js
app.unit({
    base: '_fistlabs_unit_controller',
    name: 'news',
    rule: 'GET /news/',
    defaultName: 'index.jade',
    deps: ['user_info', 'news_list']
});

##Settings You can configure base controller unit with params.unitSettings

###String viewsDir=app.params.root+'views' The directory name view names will be resolved from

###Object engines={} The dictionary which provides extname->engine relation Supports extensions as bemhtml.js, in fact it is the substring from end of view file name. The value may be both string and function (consolidate.js)

##API:

_fistlabs_unit_controller unit a also provides some api to make your controllers smarter.

###String unit.defaultViewName Default view name

###String unit.lookupViewName(track, context) Should return template name, returns unit.defaultViewName by default.

###String unit.rule Router rule to automatic assign the unit with request pattern


LICENSE MIT

FAQs

Last updated on 17 Mar 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc