DEV Community

Cover image for JSON Formatter & Validator
!2C RAM @ jsonformatter.dev
!2C RAM @ jsonformatter.dev

Posted on

JSON Formatter & Validator

Hello ...
I am inviting everyone to give it a try

JSONFormatter.dev

About JSONFormatter.dev

The free online tool is used to format JSON data, debugging and beautify.

The best part is, all operations done in the browser, with no network calls or data exchange to the server.

JSON is the most popular format to exchange data between clients and servers.

JSONFormatter.dev

Why JSON

It's easy
all data will be enclosed in {}
supports number,string,bool data types.

JSON : JavaScript Object Notation

Let’s try to explore JSON and how we can define it. In general, JSON is a lightweight object format, is used to store data and transport over the network.

JSON stores data in the form of properties. Each property consists of key and value and enclosed with "".

Syntax

{
  "key": "value"
}
Enter fullscreen mode Exit fullscreen mode

Example

{
  "tool": "jsonformatter.dev"
}
Enter fullscreen mode Exit fullscreen mode

Rules to define JSON property names (keys)

  • Property names must be camel-cased, ascii strings.
  • The first character must be a letter, an underscore (_) or a dollar sign ($).
  • Subsequent characters can be a letter, a digit, an underscore, or a dollar sign.
  • Reserved JavaScript keywords should be avoided (A list of reserved JavaScript keywords can be found below ### Example
{
  "devTool": "Online JSONFormatter tool"
}
Enter fullscreen mode Exit fullscreen mode

Try it and share your feedback. I am excited about this tool and I am just started.

More tools will come as part of toolskit.dev initiative.

How to connect

drop an email to hello.toolskit@gmail.com. let me know, which tools will more helpful for our dev community.

Thank you all

Top comments (1)

Collapse
 
stremovsky profile image
Yuli

Hi

Your website about page is broken. At first, it shows the about and then displays the same content as the front end. jsonformatter.dev/about

BTW, This is my tool. It supports JSON storage:

databunker.org/

Some comments may only be visible to logged-in visitors. Sign in to view all comments.