
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
gulp-json-to-yaml
Advanced tools
#gulp-json-to-yaml
npm install --save-dev gulp-json-to-yaml
var jsonToYaml = require('gulp-json-to-yaml');
gulp.src('./src/*.json')
.pipe(jsonToYaml())
.pipe(gulp.dest('./dist/'))
gulp.src('./src/*.json')
.pipe(jsonToYaml({ safe: true}))
.pipe(gulp.dest('./dist/'))
Type: Boolean
Default: true
Enable or disable support for regexps, functions and undefined.
This flag should always be enabled when working with untrusted data.
When this flag is enabled then [safeDump] method is used, otherwise [dump]. The options object is passed on to js-yaml methods. See js-yaml for details
Type String
Default: the path of the file processed
String to be used as a file path in error/warning messages.
MIT
FAQs
Convert JSON to YAML
We found that gulp-json-to-yaml 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.