<?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: Chhekur</title>
    <description>The latest articles on DEV Community by Chhekur (@chhekur).</description>
    <link>https://dev.to/chhekur</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%2F157976%2F3e0f9f4d-d8f9-4d20-bd0b-65386ecd7b72.jpeg</url>
      <title>DEV Community: Chhekur</title>
      <link>https://dev.to/chhekur</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/chhekur"/>
    <language>en</language>
    <item>
      <title>How Android JS Is Different From Other Frameworks/Libraries ?</title>
      <dc:creator>Chhekur</dc:creator>
      <pubDate>Mon, 22 Apr 2019 14:49:45 +0000</pubDate>
      <link>https://dev.to/chhekur/how-android-js-is-different-from-other-frameworks-libraries-5f3i</link>
      <guid>https://dev.to/chhekur/how-android-js-is-different-from-other-frameworks-libraries-5f3i</guid>
      <description>

&lt;h1&gt;
  
  
  What is Android JS ?
&lt;/h1&gt;

&lt;p&gt;Android JS is an open-source framework developed and maintained on GitHub. Android JS allows for the development of Android applications using front and back-end components originally developed for web applications: Node.js runtime for the backend and Android Webview for the frontend. Android JS framework can be used to android apps with frontend technologies like JavaScript, HTML, and CSS.&lt;/p&gt;

&lt;h1&gt;
  
  
  What is Cordova ?
&lt;/h1&gt;

&lt;p&gt;Apache Cordova, formerly known as Adobe PhoneGap, is an open source framework for creating cross-platform hybrid mobile applications using web standard technologies such as HTML5, CSS3, and JavaScript. Cordova has been around for many years with a lot of resources available on the internet. Additionally, there are a lot of plugins available to enhance your application.&lt;/p&gt;

&lt;p&gt;So let’s talk about How Android JS is different ?&lt;br&gt;
let’s discuss the app architecture of Android JS&lt;/p&gt;

&lt;h3&gt;
  
  
  Android JS’s App Architecture
&lt;/h3&gt;

&lt;p&gt;This is the architecture of Android JS&lt;/p&gt;

&lt;p&gt;Here you can simply see that there is a Node JS runtime environment provided by &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Android JS, which means you can use any NPM packages in your app .&lt;/li&gt;
&lt;li&gt;Android JS provides two process Back Process and Front Process 
— Front Process is just views of your app, you can make them in HTML/CSS , Angular , Phonon Framework , Onsen UI , Vue etc…
— Back Process is the main process of your app which communicates with Node environment.&lt;/li&gt;
&lt;li&gt;In order to make communication between Back and Front process, Android JS provides IPC (Inter Process Communication).
Android JS provides various Native Android Libraries like: Notification , Toast , Call , SMS , etc…&lt;/li&gt;
&lt;li&gt;Android JS provides Browser Libraries as well like: Camera API , Microphone API .
Now let’s discuss the app architecture of Cordova&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Cordova’s App Architecture
&lt;/h3&gt;

&lt;p&gt;This is the architecture of Cordova&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cordova provides the Front Process which is nothing but just the views of your app, you can make them in HTML/CSS , Angular , Phonon Framework , Onsen UI , Vue etc…&lt;/li&gt;
&lt;li&gt;Cordova provides various Browser Libraries like : Notification , Camera , Microphone, etc…&lt;/li&gt;
&lt;li&gt;Cordova does not provide Native Libraries .&lt;/li&gt;
&lt;li&gt;Cordova does not provide any Back end support but you can build API based app , - - which fetches the data from server using API’s .
Cordova is just for Front end with Browser API's .&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Conclusion
&lt;/h1&gt;

&lt;p&gt;No matter what, each framework has its pros and cons. It truly comes down to what you’re comfortable with and what your application needs are. In the end, both are great options for creating and debugging cross-platform apps.&lt;br&gt;
Android JS provides Back and Front both processes, while Cordova just provide Front process only.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Android JS provides Node JS runtime environment inside your app, while Cordova does not provide such kinda facility at all.&lt;/li&gt;
&lt;li&gt;Android JS provides Native Android Libraries as well as Browser API's , while - - - Cordova only provide Browser API's .&lt;/li&gt;
&lt;li&gt;Both frameworks are Open Source .&lt;/li&gt;
&lt;li&gt;Both have various Front end frameworks to work on.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Cheers !&lt;/p&gt;


</description>
      <category>androidjs</category>
      <category>cordova</category>
      <category>mobileapp</category>
      <category>appdevelopment</category>
    </item>
    <item>
      <title>How To Build Android Apps With Node JS Using Android JS</title>
      <dc:creator>Chhekur</dc:creator>
      <pubDate>Sat, 20 Apr 2019 16:31:05 +0000</pubDate>
      <link>https://dev.to/chhekur/how-to-build-android-apps-with-node-js-using-android-js-f4l</link>
      <guid>https://dev.to/chhekur/how-to-build-android-apps-with-node-js-using-android-js-f4l</guid>
      <description>

&lt;h1&gt;
  
  
  What is Android JS?
&lt;/h1&gt;

&lt;p&gt;Android JS is an open-source framework developed and maintained on GitHub. Android JS allows for the development of Android applications using front and back-end components originally developed for web applications: Node.js runtime for the backend and Android Webview for the frontend. Android JS framework can be used to android apps with frontend technologies like JavaScript, HTML, and CSS.&lt;/p&gt;

&lt;p&gt;website: &lt;a href="https://android-js.github.io"&gt;https://android-js.github.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;docs: &lt;a href="https://android-js.github.io/androidjs"&gt;https://android-js.github.io/androidjs&lt;/a&gt;&lt;/p&gt;


</description>
      <category>androidjs</category>
      <category>androidapp</category>
      <category>buildandroidapp</category>
      <category>node</category>
    </item>
  </channel>
</rss>
