<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: !2C RAM @ jsonformatter.dev</title>
    <description>The latest articles on DEV Community by !2C RAM @ jsonformatter.dev (@thulasiram_ponnam_8d5e32b).</description>
    <link>https://dev.to/thulasiram_ponnam_8d5e32b</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F577814%2F2cafafc3-c2b0-44fa-aafc-75f4b81846aa.png</url>
      <title>DEV Community: !2C RAM @ jsonformatter.dev</title>
      <link>https://dev.to/thulasiram_ponnam_8d5e32b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/thulasiram_ponnam_8d5e32b"/>
    <language>en</language>
    <item>
      <title>JSON Formatter &amp; Validator </title>
      <dc:creator>!2C RAM @ jsonformatter.dev</dc:creator>
      <pubDate>Thu, 11 Feb 2021 20:13:23 +0000</pubDate>
      <link>https://dev.to/thulasiram_ponnam_8d5e32b/json-formatter-validator-gbk</link>
      <guid>https://dev.to/thulasiram_ponnam_8d5e32b/json-formatter-validator-gbk</guid>
      <description>&lt;p&gt;Hello ...&lt;br&gt;
I am inviting everyone to give it a try&lt;/p&gt;

&lt;p&gt;&lt;a href="https://jsonformatter.dev"&gt;JSONFormatter.dev&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  About JSONFormatter.dev
&lt;/h2&gt;

&lt;p&gt;The free online tool is used to format JSON data, debugging and beautify.&lt;/p&gt;

&lt;p&gt;The best part is, all operations done in the browser, with no network calls or data exchange to the server.&lt;/p&gt;

&lt;p&gt;JSON is the most popular format to exchange data between clients and servers. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--WrcJXdMh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/gp6o8fky7v8k2uuu3koo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WrcJXdMh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/gp6o8fky7v8k2uuu3koo.png" alt="JSONFormatter.dev"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why JSON
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;It's easy&lt;br&gt;
all data will be enclosed in {}&lt;br&gt;
supports number,string,bool data types.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  JSON : JavaScript Object Notation
&lt;/h2&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;JSON stores data in the form of properties. Each property consists of key and value and enclosed with "".&lt;/p&gt;

&lt;h3&gt;
  
  
  Syntax
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"key"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"value"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Example
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"tool"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"jsonformatter.dev"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Rules to define JSON property names (keys)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Property names must be camel-cased, ascii strings.&lt;/li&gt;
&lt;li&gt;The first character must be a letter, an underscore (_) or a dollar sign ($).&lt;/li&gt;
&lt;li&gt;Subsequent characters can be a letter, a digit, an underscore, or a dollar sign.&lt;/li&gt;
&lt;li&gt;Reserved JavaScript keywords should be avoided (A list of reserved JavaScript keywords can be found below
### Example
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"devTool"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Online JSONFormatter tool"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Try it and share your feedback. I am excited about this tool and I am just started.&lt;/p&gt;

&lt;p&gt;More tools will come as part of &lt;strong&gt;toolskit.dev&lt;/strong&gt; initiative.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to connect
&lt;/h2&gt;

&lt;p&gt;drop an email to &lt;strong&gt;&lt;a href="mailto:hello.toolskit@gmail.com"&gt;hello.toolskit@gmail.com&lt;/a&gt;&lt;/strong&gt;. let me know, which tools will more helpful for our dev community.&lt;/p&gt;

&lt;p&gt;Thank you all&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>programming</category>
      <category>kotlin</category>
      <category>android</category>
    </item>
  </channel>
</rss>
