
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
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 10 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.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.