Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
fast-json-parse
Advanced tools
It is equivalent to json-parse-safe,
but it set both the err
and value
property to null.
The reason why this is fast is that try/catch
inhibits the functions
in which you use them to be optimized. This assumption holds true up to
Node 6, from Node 7 and forward this module is not useful anymore.
npm i fast-json-parse --save
You can use it as a function or via a contructor, as you prefer.
'use strict'
var parse = require('fast-json-parse')
var fs = require('fs')
var result = parse(fs.readFileSync('./package.json'))
if (result.err) {
console.log('unable to parse json', result.err.message)
} else {
console.log('json parsed successfully', result.value)
}
'use strict'
var Parse = require('fast-json-parse')
var fs = require('fs')
var result = new Parse(fs.readFileSync('./package.json'))
if (result.err) {
console.log('unable to parse json', result.err.message)
} else {
console.log('json parsed successfully', result.value)
}
fast-json-parse is sponsored by nearForm.
MIT
FAQs
Parse json safely and at max speed
The npm package fast-json-parse receives a total of 1,326,001 weekly downloads. As such, fast-json-parse popularity was classified as popular.
We found that fast-json-parse 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.