
Security News
CISA Rebuffs Funding Concerns as CVE Foundation Draws Criticism
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
gulp-confidence
Advanced tools
Confidence JSON plugin for GulpJS
retreive parameterized confidence documents using gulp.
Issues with the output should be reported on the confidence issue tracker.
$ npm install --save-dev gulp-confidence
config/base.config.json
{
"hello":{
"$filter": "place"
"world": "Hello World",
"$default": "Hello Mars"
}
}
gulpfile.js
var gulp = require('gulp');
var confidence = require('gulp-confidence');
gulp.task('default', function () {
return gulp.src('config/base.config.json')
.pipe(confidence({place: "world"}))
.pipe(gulp.dest('dist'));
});
dist/base.config.json
{
"hello": "Hello World"
}
You can alternatively use gulp-data to inject the data:
gulpfile.js
var gulp = require('gulp');
var confidence = require('gulp-confidence');
var data = require('gulp-data');
gulp.task('default', function () {
return gulp.src('src/greeting.html')
.pipe(data(function () {
return {place: "world"};
}))
.pipe(confidence())
.pipe(gulp.dest('dist'));
});
dist/base.config.json
{
"hello": "Hello World"
}
See the Confidence Store
docs.
Type: Object
The criteria object used to populate the text.
Type: Object
Currently just supports a "key" key, that allows you to specify the key used in the get()
command
If you use grunt instead of gulp, but want to perform a similar task, use grunt-confidence.
MIT
FAQs
a gulp plugin for confidenceJS
The npm package gulp-confidence receives a total of 1 weekly downloads. As such, gulp-confidence popularity was classified as not popular.
We found that gulp-confidence 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
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.