Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
fist-fistlabs_unit_controller
Advanced tools
Fist plugin providing abstract controller
##Basic usage:
// app.js
var app = fist({
unitSettings: {
_fistlabs_unit_controller: {
viewsDir: '/views',
engines: {
// as module name
'.jade': 'jade',
// as consolidate signature function
'.dust': require('consolidate').dust
}
}
}
});
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 as string and consolidate.js template signature convention function
##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.
###Number unit.createResponseStatus(track, context)
Should return response status code for current request. Returns 200 by default
###Object unit.createResponseHeader(track, context)
Should create response header dictionary. Returns
{
'Content-Type': 'text/html; charset="UTF-8"'
}
as default
###Object unit.createViewOpts(track, context)
Should create an object which provides view options. See consolidate.js
###String unit.rule
Router rule to automatic assign the unit with request pattern
LICENSE MIT
FAQs
Base controller as a unit
The npm package fist-fistlabs_unit_controller receives a total of 0 weekly downloads. As such, fist-fistlabs_unit_controller popularity was classified as not popular.
We found that fist-fistlabs_unit_controller demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.