Best of React NativeOctober 2022

  1. 1
    Article
    Avatar of webtoolsweeklyWeb Tools Weekly·3y

    VSCode Updates, Frameworks, Git/CLI, JS Utils

    This week's newsletter includes tools, extensions, the latest news, articles, and tutorials on VS Code. VSCode Updates, Frameworks, Git/CLI, JS Utils, and Email are all free and open-source tools.

  2. 2
    Article
    Avatar of devtoDEV·3y

    How to write a good README

    README file is as indispensable for an open source project as it is the quality of the code. README files are plain text files because most of the source code hostings such as Github, GitLab or Azure Repos support the Markdown format. Using around 3 to 5 lines is a good rule of thumb. Each paragraph should have only one concept.

  3. 3
    Article
    Avatar of asayerasayer·4y

    React Fiber explained

    Facebook began the creation of React Fiber in 2015(It is currently the default reconciler). The literal implementation of a fiber is an object. It is simply a Javascript object that contains information about a react component. The return fiber is the fiber to which the program should return after processing the current one.

  4. 4
    Article
    Avatar of syncfusionSyncfusion·4y

    React Router vs. React Router DOM

    React Router DOM Routing is an essential technique for navigation among pages on a website based on user requests and actions. A separate library named React Router enables routing in React applications and allows defining multiple routes in an application. This article addresses this confusion by analyzing their differences and where to use which package.

  5. 5
    Article
    Avatar of telerikTelerik·4y

    The Guide to New Hooks in React 18

    React 18 is a major release that comes with new features such as concurrent rendering, automated batching, transitions, new APIs and hooks. In this tutorial, we will cover the five new hooks that arrived in React 18: Are you feeling a bit rusty on the topic of hooks in general? Then you could check out the src/App.jsx import UseIdExample from "examples/UseIdExample" The image below.

  6. 6
    Article
    Avatar of communityCommunity Picks·4y

    Setting up Storybook in your Development Environment

    Storybook is a playground for testing UI components that runs alongside your app in development mode. Storybook editions are available for React, React Native, Vue, Angular, Svelte, Ember, Ember and React Native. It acts as an aid to you UI component library as it builds and indexes the components.

  7. 7
    Article
    Avatar of dzDZone·3y

    Why Is the Flutter Framework Better Than React Native?

    Flutter is a new framework for developing mobile apps that promise to be faster and more efficient than React Native. It uses Dart programming language, which is similar to JavaScript, but with some important differences. Flutter apps are compiled using ahead of time (AOT) compilation, which means that the app is compiled into.

  8. 8
    Article
    Avatar of twirThis Week In React·4y

    📨 #119: React OG Images, Tremor, Storybook, Decoupling, Rendering, Data-Fetching, Remix, Qwik, TypeScript, Playwright...

    The ViteConf is the headless CMS with a Visual Editor designed for both developers and marketers. Use Storyblok React SDK to quickly build reusable components and fetch the content to create React, Next.js, Remix or even React-Native applications. Talk about the trendiest tech and skills (Playwright, WebVR, useEffect, Data Fetching, Remix, Remix …) will be on agenda.

  9. 9
    Article
    Avatar of asayerasayer·4y

    Deep Linking in React Native apps

    Deep Linking in React Native apps is the reason why you click on a link and it opens up an app that’s installed on your device. Deep linking is the configuring of an application and the screens of that application so that the application can be launched and navigate to a screen within the application when a certain link is opened.