Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
stringify-object
Advanced tools
Stringify an object/array like JSON.stringify just without all the double-quotes
The stringify-object npm package is used to stringify an object into a string format that is more readable than JSON.stringify, especially for multi-line strings and functions. It provides options to customize the output, such as indentation, single quotes, and filtering of object properties.
Stringify an object with custom indentation
This feature allows you to convert an object to a string with a specified indentation for better readability. The code sample demonstrates how to use a two-space indentation.
const stringifyObject = require('stringify-object');
const obj = {foo: 'bar', 'arr': [1, 2, 3]};
console.log(stringifyObject(obj, {
indent: ' '
}));
Stringify an object using single quotes
This feature allows you to stringify an object using single quotes instead of double quotes for string values. The code sample shows how to enable this option.
const stringifyObject = require('stringify-object');
const obj = {foo: 'bar'};
console.log(stringifyObject(obj, {
singleQuotes: true
}));
Filter properties during stringification
This feature allows you to filter out properties from the resulting string based on a custom function. The code sample demonstrates excluding the 'baz' property from the stringified output.
const stringifyObject = require('stringify-object');
const obj = {foo: 'bar', baz: 'qux'};
console.log(stringifyObject(obj, {
filter: (obj, prop, value) => prop !== 'baz'
}));
This package offers a way to stringify JSON data in a pretty (indented) yet compact (no unnecessary whitespace) form. It is similar to stringify-object but focuses on compactness and does not handle functions or undefined values.
Developed by Facebook as part of the Jest testing framework, pretty-format allows serialization of JavaScript objects into a string with pretty printing. It supports plugins and can handle React elements, which makes it more versatile than stringify-object for certain use cases.
Flatted is a package that can stringify and parse objects with circular references, which JSON.stringify cannot handle. It is similar to stringify-object in that it provides a way to represent objects as strings, but it is specifically designed to work with circular data structures.
Stringify an object/array like JSON.stringify just without all the double-quotes
Useful for when you want to get the string representation of an object in a formatted way.
It also handles circular references and lets you specify quote type.
npm install stringify-object
import stringifyObject from 'stringify-object';
const object = {
foo: 'bar',
'arr': [1, 2, 3],
nested: {
hello: "world"
}
};
const pretty = stringifyObject(object, {
indent: ' ',
singleQuotes: false
});
console.log(pretty);
/*
{
foo: "bar",
arr: [
1,
2,
3
],
nested: {
hello: "world"
}
}
*/
Circular references will be replaced with "[Circular]"
.
Object keys are only quoted when necessary, for example, {'foo-bar': true}
.
Type: object | Array
Type: object
Type: string
Default: \t
Preferred indentation.
Type: boolean
Default: true
Set to false to get double-quoted strings.
Type: Function
Expected to return a boolean
of whether to include the property property
of the object object
in the output.
Type: Function
Default: undefined
Expected to return a string
that transforms the string that resulted from stringifying object[property]
. This can be used to detect special types of objects that need to be stringified in a particular way. The transform
function might return an alternate string in this case, otherwise returning the originalResult
.
Here's an example that uses the transform
option to mask fields named "password":
import stringifyObject from 'stringify-object';
const object = {
user: 'becky',
password: 'secret'
};
const pretty = stringifyObject(object, {
transform: (object, property, originalResult) => {
if (property === 'password') {
return originalResult.replace(/\w/g, '*');
}
return originalResult;
}
});
console.log(pretty);
/*
{
user: 'becky',
password: '******'
}
*/
Type: number
When set, will inline values up to inlineCharacterLimit
length for the sake of more terse output.
For example, given the example at the top of the README:
import stringifyObject from 'stringify-object';
const object = {
foo: 'bar',
'arr': [1, 2, 3],
nested: {
hello: "world"
}
};
const pretty = stringifyObject(object, {
indent: ' ',
singleQuotes: false,
inlineCharacterLimit: 12
});
console.log(pretty);
/*
{
foo: "bar",
arr: [1, 2, 3],
nested: {
hello: "world"
}
}
*/
As you can see, arr
was printed as a one-liner because its string was shorter than 12 characters.
FAQs
Stringify an object/array like JSON.stringify just without all the double-quotes
The npm package stringify-object receives a total of 5,150,272 weekly downloads. As such, stringify-object popularity was classified as popular.
We found that stringify-object demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 open source maintainers 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.