パッケージの詳細

obj-json

sahilrajput038ISC0.0.5

A tool to help you convert javascript object to json on command line.

convert jso bject to json, json from js object, object to json, javascript object to json

readme

Readme

A tool to help you convert javascript object to json on command line.

Installation

npm i -g obj-json

Usage:

$ echo "{a: 10, b: 20, name: 'sahil'}" | obj-json
# Output: {"a":10,"b":20,"name":"sahil"}
  • FYI: NOW I CAN USE jq AS WELL:
$ echo "{a: 10, b: 20, name: 'sahil'}" | obj-json | jq
# Output:
{
  "a": 10,
  "b": 20,
  "name": "sahil"
}