
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
gulp-jsonlint
Advanced tools
jsonlint plugin for gulp
First, install gulp-jsonlint
as a development dependency:
npm install --save-dev gulp-jsonlint
Then, add it to your gulpfile.js
:
var jsonlint = require("gulp-jsonlint");
gulp.src("./src/*.json")
.pipe(jsonlint())
.pipe(jsonlint.reporter());
Using a custom reporter:
var jsonlint = require('gulp-jsonlint');
var log = require('fancy-log');
var myCustomReporter = function (file) {
log('File ' + file.path + ' is not valid JSON.');
};
gulp.src('./src/*.json')
.pipe(jsonlint())
.pipe(jsonlint.reporter(myCustomReporter));
For now, options
are not supported yet.
Type: function
You can pass a custom reporter function. If ommited then the default reporter will be used.
The customReporter
function will be called with the argument file
.
Type: object
This argument has the attribute jsonlint
wich is an object that contains a success
boolean attribute. If it's false you also have a message
attribute containing the jsonlint error message.
Stop a task/stream if an jsonlint error has been reported for any file.
// Cause the stream to stop(/fail) before copying an invalid JS file to the output directory
gulp.src('**/*.js')
.pipe(jsonlint())
.pipe(jsonlint.failOnError())
.pipe(gulp.dest('../output'));
Stop a task/stream if an jsonlint error has been reported for any file, but wait for all of them to be processed first.
FAQs
A jsonlint plugin for Gulp
The npm package gulp-jsonlint receives a total of 8,080 weekly downloads. As such, gulp-jsonlint popularity was classified as popular.
We found that gulp-jsonlint 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
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.