JSON
Format and View JSON, JSON to YAML and YAML to JSON conversion, Convert JSON to Base64 string, Convert JSON to URL Parameters
Loading...
JSON String to JSON Object
const jsonString = `{"name":"Apps4Developers.com","url":"https://apps4developers.com","description":"A collection of web development tutorials and examples","author":{"name":"Apps4Developers.com","url":"https://apps4developers.com"}}`;
const jsonObj = JSON.parse(jsonString);
console.log(jsonObj);
JSON Object to JSON String
const jsonObj = {
"name": "Apps4Developers.com",
"url": "https://apps4developers.com",
"description": "A collection of web development tutorials and examples",
"author": {
"name": "Apps4Developers.com",
"url": "https://apps4developers.com"
}
};
const jsonString = JSON.stringify(jsonObj, null, 2);
console.log(jsonString);
JSON Object to Base64 String
const jsonObj = {
"name": "Apps4Developers.com",
"url": "https://apps4developers.com",
"description": "A collection of web development tutorials and examples",
"author": {
"name": "Apps4Developers.com",
"url": "https://apps4developers.com"
}
};
const jsonString = JSON.stringify(jsonObj);
const base64String = btoa(jsonString);
console.log(base64String);
JSON Object to URL Parameter String
const jsonObj = {
"name": "Apps4Developers.com",
"url": "https://apps4developers.com"
};
const urlParams = new URLSearchParams(jsonObj).toString()
console.log(urlParams);
JSON Object to YAML using yaml
Install yaml package from NPM, learn more about this package here.
npm install yaml
import YAML from 'yaml';
const jsonObj = {
"name": "Apps4Developers.com",
"url": "https://apps4developers.com",
"description": "A collection of web development tutorials and examples",
"author": {
"name": "Apps4Developers.com",
"url": "https://apps4developers.com"
}
};
const doc = new YAML.Document();
doc.contents = jsonObj;
yaml = doc.toString();
console.log(yaml);
© 2022 Apps4Developers. All rights reserved.