Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
karma-ng-jade2js-preprocessor
Advanced tools
A Karma plugin. Compile Jade AngularJS templates to JavaScript on the fly.
Preprocessor for converting jade files to AngularJS templates.
Forked from karma-ng-html2js-preprocessor
The easiest way is to keep karma-ng-jade2js-preprocessor
as a devDependency in your package.json
.
{
"devDependencies": {
"karma": "~0.12",
"karma-ng-jade2js-preprocessor": "~0.2"
}
}
You can simple do it by:
npm install karma-ng-jade2js-preprocessor --save-dev
// karma.conf.js
module.exports = function(config) {
config.set({
preprocessors: {
'**/*.jade': ['ng-jade2js']
},
files: [
'*.js',
'*.jade',
// if you wanna load template files in nested directories, you must use this
'**/*.jade'
],
ngJade2JsPreprocessor: {
// strip this from the file path
stripPrefix: 'public/',
// prepend this to the
prependPrefix: 'served/',
// By default, Jade files are added to template cache with '.html' extension.
// Set this option to change it.
templateExtension: 'html',
// or define a custom transform function
cacheIdFromPath: function(filepath) {
return filepath.replace(/\.jade$/, '.html');
},
// Support for jade locals to render at compile time
locals: {
foo: 'bar'
},
// setting this option will create only a single module that contains templates
// from all the files, so you can load them all with module('foo')
moduleName: 'foo',
// Jade compiler options. For a list of possible options, consult Jade documentation.
jadeOptions: {
doctype: 'xml'
}
}
});
};
For more information on Karma see the homepage.
FAQs
A Karma plugin. Compile Jade AngularJS templates to JavaScript on the fly.
The npm package karma-ng-jade2js-preprocessor receives a total of 4,096 weekly downloads. As such, karma-ng-jade2js-preprocessor popularity was classified as popular.
We found that karma-ng-jade2js-preprocessor 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.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.