
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
stringify-object
Advanced tools
Stringify an object/array like JSON.stringify just without all the double-quotes
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"
}
}
*/
// Also works with Map and Set
const map = new Map([['key', 'value']]);
console.log(stringifyObject(map));
//=> new Map([
//=> ['key', 'value']
//=> ])
Circular references will be replaced with "[Circular]".
Object keys are only quoted when necessary, for example, {'foo-bar': true}.
Type: object | Array | Map | Set
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.
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.
FAQs
Stringify an object/array like JSON.stringify just without all the double-quotes
The npm package stringify-object receives a total of 13,597,428 weekly downloads. As such, stringify-object popularity was classified as popular.
We found that stringify-object demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.