Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
wallaby-ng-html2js-preprocessor
Advanced tools
Wallaby.js preprocessor to compile AngularJS templates to JavaScript.
Wallaby.js preprocessor to compile AngularJS templates to JavaScript.
#Configuration:
// wallaby.conf.js
module.exports = function () {
return {
files: [
'app/**/*.js',
'app/**/*.html'
],
tests: [
'tests/**/*.js'
],
preprocessors: {
'app/**/*.html': function(file) {
return require('wallaby-ng-html2js-preprocessor').transform(file, {
// strip this from the file path
stripPrefix: 'public/',
stripSufix: '.ext',
// prepend this to the
prependPrefix: 'served/',
// or define a custom transform function
cacheIdFromPath: function(filepath) {
return cacheId;
},
// 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'
})
}
}
}
}
#How does it work ?
This preprocessor converts HTML files into JS strings and generates Angular modules. These modules, when loaded, puts these HTML files into the $templateCache and therefore Angular won't try to fetch them from the server.
FAQs
Wallaby.js preprocessor to compile AngularJS templates to JavaScript.
The npm package wallaby-ng-html2js-preprocessor receives a total of 458 weekly downloads. As such, wallaby-ng-html2js-preprocessor popularity was classified as not popular.
We found that wallaby-ng-html2js-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 a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.