
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
Concise library to parse and stringify JSON without the need for try catch. Simply use the standard Node.js pattern of providing parameters and a callback that takes an error as the first parameter and result as the second.
This library is nice for chaining operations using async as demonstrated below.
Pretty much any browser with JSON support.
npm install safejson --save
bower install safejson --save
var safejson = require('safejson')
, async = require('async')
, fs = require('fs');
exports.updateFile = function (callback) {
async.waterfall([
readFile,
safejson.parse,
doUpdate,
safejson.stringify,
writeFile
], callback);
}
// Valid JSON object that will stringify
var VALID_OBJECT = {
name: 'evan',
age: 23
};
var VALID_JSON_STRING = JSON.stringify(VALID_OBJECT);
safejson.parse(VALID_JSON_STRING, function(err, json) {
// err is null as no error would have occured due to valid input
// json is a valid JSON object
});
// Valid JSON object that will stringify
var VALID_OBJECT = {
name: 'evan',
age: 23
};
// Invalid JSON object, has a circular reference added below
var CIRCULAR_OBJECT = {
name: 'evan',
age: 23
};
CIRCULAR_OBJECT.cref = CIRCULAR_OBJECT;
safejson.stringify(VALID_OBJECT, function(err, json) {
// err would be null as the object is valid json
// json is a valid json string
});
safejson.stringify(CIRCULAR_OBJECT, function(err, str) {
// err would be defined as the object contained a circular reference
// str would equal null
});
If true the parsing of JSON will be briefly deffered. This uses process.nextTick in Node.js and the appropriate browser shim (setTimeout for example) where necessary.
Does the job of JSON.stringify but handles exceptions for you. Supports all the usual JSON.stringify parameters, including the optional replacer and spaces. The last parameter must always be a callback function and is not optional.
Does the job of JSON.parse but handles exceptions for you. Supports all the usual JSON.parse parameters. The last parameter must always be a callback function and is not optional.
FAQs
Safely parse and stringify JSON using node style callbacks.
The npm package safejson receives a total of 496 weekly downloads. As such, safejson popularity was classified as not popular.
We found that safejson 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
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.