<?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: kishan kumar</title>
    <description>The latest articles on DEV Community by kishan kumar (@kishankrmishra).</description>
    <link>https://dev.to/kishankrmishra</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%2F347400%2F90c6e585-9406-464a-acfa-e51e64daf6bf.jpeg</url>
      <title>DEV Community: kishan kumar</title>
      <link>https://dev.to/kishankrmishra</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kishankrmishra"/>
    <language>en</language>
    <item>
      <title>Vue.js – Simple Pagination Example</title>
      <dc:creator>kishan kumar</dc:creator>
      <pubDate>Sun, 08 Mar 2020 14:25:29 +0000</pubDate>
      <link>https://dev.to/kishankrmishra/vue-js-simple-pagination-example-4m84</link>
      <guid>https://dev.to/kishankrmishra/vue-js-simple-pagination-example-4m84</guid>
      <description>&lt;p&gt;This is a simple example of how to implement Vue.js – Simple Pagination in Vue.js.&lt;/p&gt;

&lt;h2&gt;Running the Vue.js Pagination Example Locally&lt;/h2&gt;

&lt;ol&gt;
    &lt;li&gt;Install NodeJS and NPM from &lt;a href="https://nodejs.org/" rel="noreferrer noopener"&gt;https://nodejs.org&lt;/a&gt;.&lt;/li&gt;
    &lt;li&gt;Download or clone the tutorial project source code from &lt;a href="https://github.com/Appfinz/vue-js-pagination-with-easy-steps.git"&gt;https://github.com/Appfinz/vue-js-pagination-with-easy-steps.git&lt;/a&gt;
&lt;/li&gt;
    &lt;li&gt;Install all required npm packages by running the &lt;code&gt;npm install&lt;/code&gt; command in the project root folder (where the package.json is located).&lt;/li&gt;
    &lt;li&gt;Start the Vue.js app by running &lt;code&gt;npm start&lt;/code&gt; in the project root folder, this will build the app with webpack and automatically launch it in a browser on the URL &lt;code&gt;http://localhost:8080&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;Vue.js Pagination Component&lt;/h2&gt;

&lt;p&gt;Pagination is implemented with the &lt;code&gt;&amp;lt;jw-pagination&amp;gt;&lt;/code&gt; component that comes with the &lt;code&gt;jw-vue-pagination&lt;/code&gt; package available on &lt;a href="https://www.npmjs.com/package/jw-vue-pagination" rel="noreferrer noopener"&gt;npm&lt;/a&gt;.&lt;/p&gt;

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

&lt;p&gt;Install the Vue pagination component with the command &lt;code&gt;npm install jw-vue-pagination&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;Integration with your Vue.js app&lt;/h2&gt;

&lt;p&gt;Import the &lt;code&gt;JwPagination&lt;/code&gt; component from the &lt;code&gt;'jw-vue-pagination'&lt;/code&gt; package and register it globally within your Vue application by calling &lt;code&gt;Vue.component('jw-pagination', JwPagination);&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;The first parameter is the component name, it defines the custom tag used to add the component to other components, in this case it will be with the tag &lt;code&gt;&amp;lt;jw-pagination&amp;gt;&amp;lt;/jw-pagination&amp;gt;&lt;/code&gt;. The second parameter points to the actual Vue component.&lt;/p&gt;

&lt;p&gt;Global registration makes the Vue component available to all other components within the Vue application, it’s also possible to register components locally, for more info see &lt;a href="https://vuejs.org/v2/guide/components-registration.html" rel="noreferrer noopener"&gt;&lt;/a&gt;&lt;a href="https://vuejs.org/v2/guide/components-registration.html"&gt;https://vuejs.org/v2/guide/components-registration.html&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;This is the main Vue entry file (&lt;code&gt;/src/index.js&lt;/code&gt;) from the example, the pagination component is imported and registered globally on lines &lt;code&gt;6-7&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;br&gt;
&lt;/code&gt;import Vue from "vue";&lt;/p&gt;

&lt;p&gt;import App from "./app/App";&lt;/p&gt;

&lt;p&gt;// register jw pagination component globally&lt;br&gt;
import JwPagination from 'jw-vue-pagination';&lt;br&gt;
Vue.component('jw-pagination', JwPagination);&lt;/p&gt;

&lt;p&gt;new Vue({&lt;br&gt;
el: "#app",&lt;br&gt;
render: h =&amp;gt; h(App)&lt;br&gt;
});&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Read More about About&lt;/strong&gt; &lt;a href="https://appfinz.com/blogs/vue-js-simple-pagination-example/"&gt;vuejs pagination&lt;/a&gt; || &lt;a href="https://appfinz.com/blogs/vue-js-simple-pagination-example/"&gt;vue pagination&lt;/a&gt; || &lt;a href="https://appfinz.com/blogs/vue-js-simple-pagination-example/"&gt;vuejsapp pagination&lt;/a&gt; || &lt;a href="https://appfinz.com/blogs/vue-js-simple-pagination-example/"&gt;pagination in vue js&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vue</category>
    </item>
    <item>
      <title>Vue.js + Node – Server Side Pagination</title>
      <dc:creator>kishan kumar</dc:creator>
      <pubDate>Sun, 08 Mar 2020 14:12:20 +0000</pubDate>
      <link>https://dev.to/kishankrmishra/vue-js-node-server-side-pagination-43bi</link>
      <guid>https://dev.to/kishankrmishra/vue-js-node-server-side-pagination-43bi</guid>
      <description>&lt;p&gt;This is a simple example of how to implement server-side pagination in Vue.js with a Node.js backend API.&lt;/p&gt;

&lt;p&gt;Server-Side (Node.js) Pagination Logic&lt;br&gt;
Below is the code for the paged items route (/api/items) in the node server file (/server/server.js) in the example, it creates a hardcoded list of 150 items to be paged, in a real application you would replace this with real data (e.g. from a database). The route accepts an optional page the parameter in the URL query string if the parameter isn’t set it defaults to the first page.&lt;/p&gt;

&lt;p&gt;The paginate() the function is from the jw-paginate package and accepts the following parameters:&lt;/p&gt;

&lt;p&gt;total items (required) – the total number of items to be paged&lt;br&gt;
currentPage (optional) – the currently active page defaults to the first page&lt;/p&gt;

&lt;p&gt;pageSize (optional) – the number of items per page defaults to 10&lt;br&gt;
maxPages (optional) – the maximum number of page navigation links to display, defaults to 10&lt;br&gt;
The output of the paginate function is a pager object containing all the information needed to get the current pageOfItems out of the items array, and to display the pagination controls in the Vue.js frontend, including:&lt;/p&gt;

&lt;p&gt;startIndex – the index of the first item of the current page (e.g. 0)&lt;br&gt;
endIndex – the index of the last item of the current page (e.g. 9)&lt;br&gt;
pages – the array of page numbers to display (e.g. [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ])&lt;br&gt;
currentPage – the currently active page (e.g. 1)&lt;br&gt;
totalPages – the total number of pages (e.g. 30)&lt;br&gt;
I’ve set the pageSize to 5 in the CodeSandbox example above so, the pagination links aren’t hidden below the terminal console when the container starts up. In the code on GitHub, I didn’t set the page size so the default 10 items are displayed per page in that version.&lt;/p&gt;

&lt;p&gt;The current pageOfItems is extracted from the items array using the startIndex and endIndex from the pager object. The route then returns the pager object and current page of items in a JSON response.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Read More about About&lt;/strong&gt; &lt;a href="https://appfinz.com/blogs/vue-js-node-server-side-pagination/"&gt;Vue Paginations&lt;/a&gt; | &lt;a href="https://appfinz.com/blogs/vue-js-node-server-side-pagination/"&gt;Vue js Paginations&lt;/a&gt; | &lt;a href="https://appfinz.com/blogs/vue-js-node-server-side-pagination/"&gt;Server Side Pagination&lt;/a&gt; | &lt;a href="https://appfinz.com/blogs/vue-js-node-server-side-pagination/"&gt;Node and Vue Pagination&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Major Differences Between Ionic React Vs React Native</title>
      <dc:creator>kishan kumar</dc:creator>
      <pubDate>Sun, 08 Mar 2020 12:35:04 +0000</pubDate>
      <link>https://dev.to/kishankrmishra/major-differences-between-ionic-react-vs-react-native-5bp6</link>
      <guid>https://dev.to/kishankrmishra/major-differences-between-ionic-react-vs-react-native-5bp6</guid>
      <description>&lt;p&gt;Ionic and React Native are two of the most popular mobile app development tools for building mobile apps. Originally released in 2013, Ionic React is an open-source UI project with the Native API that contains native operating platforms that make it easy to build iOS, Android, and web applications as a developing web app. React native was released in 2015 to build apps using Javascript only. Although both are great frameworks used to build platform systems, there are many ways in which they work differently from one another. In this blog, we will discuss the major differences between the Ionic React vs React Native for mobile app development.&lt;/p&gt;

&lt;h3&gt;Ionic React&lt;/h3&gt;

&lt;p&gt;Ionic React opens up the Ionic Framework to a whole new audience. This is the biggest change in the history of the Ionic framework. Ionic React integrates centralized Ionic experience with APIs developed for React Developers. With Ionic React we can import basic Ionic elements directly into your React project. Ionic React acts as a small wrapper around the export elements like Native React elements. It enables Ionic to react naturally while working in React. This provides many response paradigms that have not been there in the mainstream.&lt;/p&gt;

&lt;p&gt;Web designers around the world use Ionic React as a version of Revenue that enables Mission, Crazy Programs for companies like Amtrak, AAA, Burger King, Home Depot, and a few others. Ionic app development companies enable them to build high-quality applications using their existing web development capabilities.&lt;/p&gt;

&lt;p&gt;While the former Ionic supports Cordova, the traditional version of the Ionic Upwork Framework runs on a new platform engine called Capacitor. The capacitor engine provides a set of consistent, web-based APIs that allow the app to stay as close to the web standards as possible while accessing the rich features of the traditional device on the supporting devices.&lt;/p&gt;

&lt;h2&gt;Highlights of Ionic React&lt;/h2&gt; 

&lt;h3&gt;Local Functionality &lt;/h3&gt;

&lt;p&gt;Ionic additionally gives local usefulness that bolsters it gets straightforwardly from the clients. Such usefulness incorporates secure validation and personality the board utilizing propelled encryption APIs accessible on iOS and Android, superior disconnected encoded information stockpiling, and a library of upheld and kept up local usefulness. &lt;/p&gt;

&lt;h3&gt;Build Fast and Beautiful Mobile Applications &lt;/h3&gt;

&lt;p&gt;Ionic React is an open-source programming advancement unit driving a large number of wonderful applications, modified to fit with any brand. &lt;/p&gt;

&lt;h3&gt;Better comparability with React DOM &lt;/h3&gt;

&lt;p&gt;Ionic React influences React DOM which is one of the most famous rendering libraries for React. It has more use and in this way has better similarity with the React biological system which empowers it to work with any React library. &lt;/p&gt;

&lt;h3&gt;Different stages support &lt;/h3&gt;

&lt;p&gt;Ionic React utilizes an undertaking made at Ionic named Capacitor which empowers designers to call local code straightforwardly from JavaScript and uncover new local usefulness or showing Native UI is simple. This local runtime can be conveyed to local iOS, Android, Electron, and the web as a Progressive Web App.&lt;/p&gt; 

&lt;h3&gt;Read More At &lt;a href="https://appfinz.com/blogs/difference-between-ionic-react-vs-react-native/"&gt; Difference Between Ionic React Vs React Native &lt;/a&gt;
&lt;/h3&gt;

</description>
      <category>react</category>
      <category>reactnative</category>
      <category>ionic</category>
    </item>
    <item>
      <title>Creating a simple website with Node.js, Express, and EJS</title>
      <dc:creator>kishan kumar</dc:creator>
      <pubDate>Sat, 07 Mar 2020 18:12:45 +0000</pubDate>
      <link>https://dev.to/kishankrmishra/creating-a-simple-website-with-node-js-express-and-ejs-17kp</link>
      <guid>https://dev.to/kishankrmishra/creating-a-simple-website-with-node-js-express-and-ejs-17kp</guid>
      <description>&lt;p&gt;This blog is for beginners who wanted to start with Node.js. We will be creating a simple website design with Node.js and the Express framework and will be using the EJS view engine to manage our HTML code.&lt;/p&gt;

&lt;p&gt;Prerequisites&lt;/p&gt;

&lt;p&gt;Step 1: Install nodejs and npm&lt;/p&gt;

&lt;p&gt;If everything installed correctly, open terminal and type node -v and npm -v and you should get the following output based on the version you have installed&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;br&gt;
node -v&lt;br&gt;
8.9.1&lt;br&gt;
npm -v&lt;br&gt;
5.8.0&lt;/code&gt;&lt;/p&gt;



&lt;p&gt;Step 2: Install Express generator package globally (g stand for global in command)&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm install express-generator -g&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Step 3: To run our node server we will install the Nodemon package globally&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm install nodemon -g&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Open a terminal and move to your directory where you want your code to reside and type&lt;/p&gt;

&lt;p&gt;&lt;code&gt;express --view=ejs mywebsite&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;As I told we will be using ejs view engine to manage our HTML code throughout our tutorial and this command will create the skeleton of our node application and will set ejs as our default view engine&lt;/p&gt;

&lt;p&gt;The next step is to install all dependencies listed in mywebsite/package.json file. Move to your myapp directory and type&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npm install&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Now we are all set to run our node server, type command&lt;/p&gt;

&lt;p&gt;&lt;code&gt;nodemon start&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;If you see the following output in your terminal, voila!!! the node server is up and running&lt;/p&gt;

&lt;p&gt;&lt;code&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;[nodemon] 1.11.0&lt;br&gt;
[nodemon] to restart at any time, enter &lt;code&gt;rs&lt;/code&gt;&lt;br&gt;
[nodemon] watching: &lt;em&gt;.&lt;/em&gt;&lt;br&gt;
[nodemon] starting &lt;code&gt;node ./bin/www start&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Read More about this article &lt;a href="https://appfinz.com/blogs/creating-a-simple-website-with-node-js-express-and-ejs/"&gt;Creating a simple website with Node.js, Express, and EJS&lt;/a&gt;&lt;/p&gt;

</description>
      <category>node</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Angular 8|9 Node &amp; Express JS File Upload Tutorial</title>
      <dc:creator>kishan kumar</dc:creator>
      <pubDate>Sat, 07 Mar 2020 18:02:36 +0000</pubDate>
      <link>https://dev.to/kishankrmishra/angular-8-9-node-express-js-file-upload-tutorial-2jeg</link>
      <guid>https://dev.to/kishankrmishra/angular-8-9-node-express-js-file-upload-tutorial-2jeg</guid>
      <description>&lt;p&gt;Right now and Node.js blog arrangement, we are going to see how to transfer documents on the Node server. To make an Angular picture transfer part, I am going to utilize Angular 8|9 front-end system alongside the ng2-document transfer NPM bundle; It's a simple to utilize Angular mandates for transferring the records. &lt;/p&gt;

&lt;p&gt;I am likewise going to take the assistance of Node.js to make the backend server for Image or File transferring demo. At first, we'll set up an Angular 8|9 web application without any preparation utilizing Angular CLI. You should have Node.js and Angular CLI introduced in your framework. Source Code is additionally appended with this segment you can download it and use it anyplace in your activities &lt;/p&gt;

&lt;p&gt;So let's make the neighborhood server utilizing Node.js and multer middleware. Multer is a node.js middleware for taking care of multipart/structure information, which is basically utilized for transferring documents. When we are finished setting in advance end and backend for our File transferring demo at that point, we'll see bit by bit how to arrange document transferring an Angular application with the assistance of the Node js server. &lt;/p&gt;

&lt;h3&gt;Prerequisite&lt;/h3&gt;

&lt;p&gt;So as to show you Angular 8|9 File transfer demo, I am expecting that you ought to have Node.js and Angular CLI introduced in your framework. In the event that not, at that point download Node js Here &lt;/p&gt;

&lt;p&gt;In the wake of Installing Node js Now Run the accompanying the order to introduce Angular CLI. It will introduce Angular CLI on your framework all-inclusive&lt;/p&gt;


&lt;p&gt;Read the full article here &lt;a href="https://appfinz.com/blogs/create-an-angular-image-upload-component/"&gt;Angular 8|9 Node &amp;amp; Express JS File Upload Tutorial&lt;/a&gt;&lt;/p&gt;

</description>
      <category>angular</category>
      <category>node</category>
      <category>wwebdev</category>
    </item>
    <item>
      <title>What is the difference between React Native and React?</title>
      <dc:creator>kishan kumar</dc:creator>
      <pubDate>Sat, 07 Mar 2020 17:53:36 +0000</pubDate>
      <link>https://dev.to/kishankrmishra/what-is-the-difference-between-react-native-and-react-137i</link>
      <guid>https://dev.to/kishankrmishra/what-is-the-difference-between-react-native-and-react-137i</guid>
      <description>&lt;p&gt;React.js was created by Facebook to address its requirement for a dynamic and high performing User Interface(UI). In 2011, Jordan Walke and his group from Facebook discharged the React JS library, a JavaScript library that united the speed of JavaScript and another method for rendering pages, prompting responsive and dynamic client input. In 2015, two years after the group publicly released React.js and its ubiquity developed, they discharged React Native.&lt;/p&gt; 

&lt;p&gt;Respond Native was created and propelled by Facebook Developers Community in 2015 and turned out to be a serious intriguing part among versatile application engineers. &lt;/p&gt;

&lt;p&gt;It very well may be utilized for building cross-stage portable applications. The structure was later modified by supporters of utilization it for building work area applications too. &lt;/p&gt;

&lt;p&gt;Check Out This &lt;a href="https://appfinz.com/blogs/react-node-js-on-aws-how-to-deploy-a-mern-stack-app-to-amazon-ec2/"&gt;React + Node.js App on AWS EC2&lt;/a&gt; &lt;/p&gt;

Despite the fact that React Native looks fundamentally the same as React.js, there are sure contrasts in their utilization and structure. Right now, we will talk about and see what separates React Native from React.js. 

&lt;h3&gt;React.js&lt;/h3&gt; 

React.js is essentially a JavaScript library worked to make easy to understand and responsive UI parts. And furthermore known as React, the library is liable for the rendering of UI segments in an ordinary specialized sense. It is fit for supporting both frontend and server-side tasks. 

&lt;h3&gt;React Native &lt;/h3&gt;

&lt;p&gt;React Native is an incredible JavaScript structure used to assemble local applications, as it orders to React to Native parts. Like React JS, and React Native likewise has the base deliberations of React DOM. &lt;/p&gt;

&lt;p&gt;This proposes while parts are unique, their language structure and work process stay comparable. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Arrangement and Running Process &lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;React.js is a JavaScript library that you can use for web improvement. While firing another undertaking and setting up ReactJS, you should pick Webpack, which is really a Components bundler. You will at that point choose which packaging modules will explicitly suit your undertaking. &lt;/p&gt;

&lt;p&gt;In React Native, you have all that you have to set up and begin. It is so natural and quick to dispatch the system. Everything necessary is to run one order in your terminal, and you are prepared to begin coding your first historically speaking React Native application. &lt;/p&gt;



&lt;p&gt;Read the full article here &lt;a href="https://appfinz.com/blogs/difference-between-react-native-and-react/"&gt;Difference Between React Js and React Native &lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;Movements Used In React &lt;/h3&gt;

&lt;p&gt;Dissimilar to React JS, where CSS assists with making liveliness, React Native causes you to adapt completely better approaches to utilize JavaScript and make activities for parts of your application. &lt;/p&gt;

&lt;p&gt;With React Native, designers can energize parts in the application by utilizing the Animated API. There is a serious notable JavaScript library, Velocity.js, that you can use too. &lt;/p&gt;

&lt;p&gt;&lt;a href="http://velocityjs.org/"&gt;Velocity.js&lt;/a&gt; permits engineers to frame arranged liveliness. They work dependent on the schedule and speed of the signal and can be utilized in numerous mixes. You can likewise utilize LayoutAnimation to React Native that is gainful for making advances, particularly on iOS. &lt;/p&gt;

&lt;h3&gt;Engineer Tools &lt;/h3&gt;

&lt;p&gt;Quick application advancement searchers would be glad to utilize React in their local task since you as of now get a couple of extraordinary apparatuses without really introducing anything. &lt;/p&gt;

&lt;p&gt;This one of a kind quality spares a ton of time and exertion for designers. What's more, hot reloading empowered by React JS proves to be useful when there is a need to roll out little improvements to generally speaking application styles. &lt;/p&gt;

&lt;p&gt;You can use Live Reload if there are greater chances to add to the application rationale so that your application reloads after changing the code. &lt;/p&gt;

&lt;p&gt;Respond Native designers can utilize numerous engineer apparatuses present in React JS. You can utilize Chrome Dev Tools to assess the system demands, handle logs, and investigate applications. &lt;/p&gt;

&lt;p&gt;You likewise have Redux DevTools for additional help with an examination. In any case, the local examiner isn't useful since you can't review DOM with React Native as you can do on the web. &lt;/p&gt;

&lt;h3&gt;Business Benefits of React.js &lt;/h3&gt;

&lt;p&gt;Respond's DOM (record object model) that oversees information sources of info and yields is a lot quicker than the traditional invigorate model. Since it just in part invigorates certain pieces of the page, Facebook never knew the way toward reviving would end up being quicker. By emphatically influencing the re-fabricate time, the fractional DOM invigorate in the long run helps execution and speed while composing programs. &lt;/p&gt;

&lt;p&gt;The marvel of reusable code segments in React JS further spares you a great deal of time. &lt;/p&gt;

&lt;p&gt;React.js likewise improves the troubleshooting speed, which exceptionally favors designers' work. &lt;/p&gt;

&lt;p&gt;The chance of rendering pages from the server to the program helps decidedly with SEO. &lt;/p&gt;

&lt;p&gt;Respond effectively comes to even amateurs. Since it is easily coherent, in contrast to different structures, React doesn't expect you to turn out to be vigorously familiar with a broad rundown of ideas. &lt;/p&gt;

&lt;p&gt;Since it depends on JavaScript, designers are allowed to receive the most extreme rewards of all the advancement and updates in the Java environment.&lt;/p&gt;

&lt;p&gt;Read the full article here &lt;a href="https://appfinz.com/blogs/difference-between-react-native-and-react/"&gt;Difference Between React Js and React Native &lt;/a&gt;&lt;/p&gt;

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