New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

serialize-js

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serialize-js

User-readable object serialization for JavaScript.

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

serialize-js

Build Status

What's this?

Small serialization helper for those who wants to get JS representation of object but gets only this dirty JSON.

Why does it exist?

Sometimes it's useful to serialize object into the JS user-readable representation but the only option you have is JSON which adds all this damn quotes around any keys (incl. valid identifiers), indents entire contents of any objects/arrays etc.

This small serializer allows you to overcome that and get pretty representations, just as you would write it with own hands in code:

objJSON.stringify(obj, null, 2)serialize(obj)
{a: 1}
{
  "a": 1
}
{a: 1}
{a: 1, b: 2}
{
  "a": 1,
  "b": 2
}
{a: 1, b: 2}
{a: 1, b: 2, c: 3}
{
  "a": 1,
  "b": 2,
  "c": 3
}
{
  a: 1,
  b: 2,
  c: 3
}
[{a: 1, b: 2, c: 3, '-': '+'}]
[
  {
    "a": 1,
    "b": 2,
    "c": 3,
    "-": "+"
  }
]
[{
  a: 1,
  b: 2,
  c: 3,
  "-": "+"
}]
[{a: 1}, {b: 2}]
[
  {
    "a": 1
  },
  {
    "b": 2
  }
]
[
  {a: 1},
  {b: 2}
]

How can I customize the output?

You can optionally pass options object as second argument (serialize(obj, { /*...options...*/ })).

Possible options are below:

initialIndent

Type: String Default: ''

Initial indentation of output (generated indentation will be relative to this one).

indent

Type: Number|String Default: 2

Indentation to be used for nested representations; it can be either number of spaces or explicit string (like '\t').

forceJSON

Type: Boolean Default: false

If set to true, generates JSON-compatible output (all the keys are wrapped with quotes, but indentation is still optimized).

Keywords

serialize

FAQs

Package last updated on 28 Jul 2014

Did you know?

Socket

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.

Install

Related posts