Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
gulp-html2ts
Advanced tools
This plugin filter html to typescript.
MyView.html
<div>
</div>
namespace a.b.c { export var MyView = `<div></div>`; }
With merge-stream and gulp-rename plugin, append htmls to typescript source set.
gulp.src('src/main/ts/**/*.ts')
In this case, FooBar.html filtered to _FooBar.html.ts
const mergeStream = require('merge-stream');
const rename = require('gulp-rename');
const html2ts = require('gulp-html2ts');
...
mergeStream(
gulp.src('src/main/ts/**/*.ts'),
gulp.src('src/main/ts/**/*.html')
.pipe(html2ts() )
.pipe(rename(function(path) {
path.basename = '_' + path.basename;
path.extname += '.ts';
}) )
)
FAQs
gulp-html2ts === This plugin filter html to typescript.
The npm package gulp-html2ts receives a total of 1 weekly downloads. As such, gulp-html2ts popularity was classified as not popular.
We found that gulp-html2ts 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.