<?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: Chirag Chandrashekhar</title>
    <description>The latest articles on DEV Community by Chirag Chandrashekhar (@cchirag).</description>
    <link>https://dev.to/cchirag</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%2F372507%2F7f6ef592-6c4d-4416-945d-f0ca262aab05.jpeg</url>
      <title>DEV Community: Chirag Chandrashekhar</title>
      <link>https://dev.to/cchirag</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/cchirag"/>
    <language>en</language>
    <item>
      <title>Reactez</title>
      <dc:creator>Chirag Chandrashekhar</dc:creator>
      <pubDate>Sun, 15 Aug 2021 07:47:53 +0000</pubDate>
      <link>https://dev.to/cchirag/reactez-4lkp</link>
      <guid>https://dev.to/cchirag/reactez-4lkp</guid>
      <description>&lt;h2&gt;
  
  
  Reactez
&lt;/h2&gt;

&lt;p&gt;A simple React CLI for Component and Page creation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;These instructions will get you a copy of the project up and running on your local machine.&lt;/p&gt;

&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm i -g reactez
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Usage
&lt;/h2&gt;

&lt;p&gt;With the new Version of reactez (v1.1.0)&lt;br&gt;
a Generate feature has been added.&lt;br&gt;
It's simple and easy.&lt;/p&gt;
&lt;h3&gt;
  
  
  Just type
&lt;/h3&gt;


&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez generate
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez g
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This takes you to an easy-to-use prompt that helps you to generate Components,Pages and implement Axios into your project with ease.&lt;/p&gt;

&lt;h2&gt;
  
  
  Component generation
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Functional Component
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez component [COMPONENTNAME]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez c [COMPONENTNAME]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;This command creates a default Functional Component.&lt;/li&gt;
&lt;li&gt;The component is created at /src/components/.&lt;/li&gt;
&lt;li&gt;The generated component consists of a .jsx(component file) and a .css(style sheet) files.&lt;/li&gt;
&lt;li&gt;Generated component comes with a Functional Component boilerplate with the style sheet imported.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Class Component
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez component [COMPONENTNAME] -c
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez c [COMPONENTNAME] -c
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;This command creates a Class Component.&lt;/li&gt;
&lt;li&gt;The component is created at /src/components/.&lt;/li&gt;
&lt;li&gt;The generated component consists of a .jsx(component file) and a .css(style sheet) files.&lt;/li&gt;
&lt;li&gt;Generated component comes with a Class Component boilerplate with the style sheet imported.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Alternate flag:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez component [COMPONENTNAME] --class
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez c [COMPONENTNAME] --class
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Page generation
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Functional Component Page
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez page [PAGENAME]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez p [PAGENAME]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;This command creates a default Functional Component Page.&lt;/li&gt;
&lt;li&gt;The component is created at /src/pages/.&lt;/li&gt;
&lt;li&gt;The generated page consists of a .jsx(component file) and a .css(style sheet) files.&lt;/li&gt;
&lt;li&gt;Generated page comes with a Functional Component boilerplate with the style sheet imported.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Class Component Page
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez page [PAGENAME] -c
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez p [PAGENAME] -c
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;This command creates a Class Component Page.&lt;/li&gt;
&lt;li&gt;The component is created at /src/pages/.&lt;/li&gt;
&lt;li&gt;The generated page consists of a .jsx(component file) and a .css(style sheet) files.&lt;/li&gt;
&lt;li&gt;Generated page comes with a Class Component boilerplate with the style sheet imported.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Alternate flag:
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez component [PAGENAME] --class
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;or&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez c [PAGENAME] --class
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Axios Implementation.
&lt;/h2&gt;

&lt;p&gt;With the new update, it's easy to implement axios into your project.&lt;/p&gt;

&lt;h3&gt;
  
  
  Just type
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;rez axios
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;&lt;p&gt;This installs Axios and creates an axios.js file inside src/services&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;This feature is also available on the Generate mode.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Author
&lt;/h2&gt;

&lt;p&gt;Chirag Chandrashekhar -&lt;a href="https://github.com/cchirag"&gt;My github&lt;/a&gt;&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
      <category>angular</category>
    </item>
    <item>
      <title>Reactez</title>
      <dc:creator>Chirag Chandrashekhar</dc:creator>
      <pubDate>Thu, 23 Apr 2020 19:23:34 +0000</pubDate>
      <link>https://dev.to/cchirag/reactez-4e8f</link>
      <guid>https://dev.to/cchirag/reactez-4e8f</guid>
      <description>&lt;p&gt;&lt;a href="https://www.npmjs.com/package/reactez"&gt;https://www.npmjs.com/package/reactez&lt;/a&gt; A simple CLI for rapid React Components and Pages creation.  Do make use of it and any suggestions are appreciated.😀&lt;/p&gt;

</description>
      <category>react</category>
      <category>npm</category>
    </item>
  </channel>
</rss>
