Best of ReactOctober 2021

  1. 1
    Article
    Avatar of nextNext.js·4y

    Blog - Next.js 12

    Next.js 12 includes a brand new Rust compiler that takes advantage of native compilation. We've optimized bundling and compiling with ~3x faster refresh locally and ~5x faster builds for production. Native Next.js APIs are now supported, as well as Suspense <Image /> AVIF Support.

  2. 2
    Article
    Avatar of phProduct Hunt·5y

    Atropos - Touch-friendly 3D parallax hover effects

    Atropos is a lightweight, free and open-source JavaScript library. It can be used to create stunning touch-friendly 3D parallax hover effects. Available for JavaScript, React and Vue.js Embed this post on your site. For more information, visit Atropos.

  3. 3
    Article
    Avatar of hnHacker News·4y

    React Docs Beta

    Learn how to think in React with step-by-step explanations and interactive examples. All explanations are written using Hooks rather than classes. We’ve added interactive examples and visual diagrams. Guides include challenges (with solutions!) to check your understanding. This is a beta website. There will be bugs, performance issues, and missing content.

  4. 4
    Article
    Avatar of reactnativeexampleReact Native Example·4y

    Liquid swipe effect in React Native

    CNN.com will feature iReporter photos in a weekly Travel Snapshots gallery. Please submit your best shots for next week. Visit CNN.com/Travel each week for a new gallery of snapshots. Visit www.dailymail.co.uk/travel next Wednesday for our next gallery.

  5. 5
    Article
    Avatar of itnextITNEXT·5y

    React Project Architecture

    Context shouldn’t be considered like ‘all the wrapper around entire project’ When complexity of project increase; structures which has connection with logic are increase in number too. Context takes the role of communication between these parts. For example; if you need communication in components and pages on the messaging module; you can create MessagesContext structure and create independent work logic.

  6. 6
    Article
    Avatar of bitBits and Pieces·5y

    5 Methods to Reduce JavaScript Bundle Size

    5 techniques to reduce the JavaScript bundle size to avoid any performance bottlenecks. Code splitting with Webpack allows you to separate your code into bundles and load them on-demand. Tree shaking is a technique used to eliminate dead codes, and Webpack provides several plugins to implement it. Using Alternative Libraries and Removing Duplicates helps to address performance issues easily.

  7. 7
    Article
    Avatar of reactnativeexampleReact Native Example·4y

    A beautiful animated app concept built with React Native

    A beautiful animated app concept built with React Native.Installation: clone the repo, install or run the app from the project directory. Use Twitter, Instagram, or Facebook to interact with the app. Use the GitHub repository to help people with the project. The app is available on iOS and Android.

  8. 8
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Secure Your React.js Application

    React.js is a scalable open-source JavaScript library and is one of the most commonly used front-end frameworks out there today. It's dynamic and is easy to get started with if you want to create interactive web applications with reusable components. But there are some thing you need to be aware of when using it for your projects.

  9. 9
    Article
    Avatar of devtoDEV·5y

    Top animation libraries for React

    There are a lot of react animation libraries available for reactjs. The top ones are listed below. If you have any questions, please comment down below. Subscribe to Cules Coding so that you don't miss the cool stuff. Back to the page you came from.

  10. 10
    Article
    Avatar of infoqInfoQ·4y

    Facebook CSS-in-JS Solution Stylex Introduced at React Finland 2021

    QCon Plus (November 1-12) and stay ahead of the tech that matters to keep your skills fresh. Facilitating the spread of knowledge and innovation in professional software development. Rosaria Silipo on Codeless Deep Learning and Visual Programming. EBPF enables high-performance tools to connect, manage and secure applications in the cloud.

  11. 11
    Article
    Avatar of devtoDEV·4y

    Why choose React for frontend?

    React is an efficient, declarative, and flexible open-source JavaScript library for building simple, fast, and scalable frontends of web applications. It is a stronger framework because of its ability to break down the complex interface and allow users to work on individual components. Currently React is used by many fortune 500 companies including Airbnb, Tesla, Tencent QQ, and Walmart.

  12. 12
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Use the Adapter Design Pattern in React

    Kenneth Angelo Reyes is the author of the popular book, "Designing for the Web" He is also the co-founder of React, a React-based social network. He has written several books on React, including a book on the design patterns used in React. His most recent book is "React: The Architecture of a Social Network"

  13. 13
    Article
    Avatar of medium_jsMedium·4y

    Do You Know the 5 Types of States in React?

    Do You Know the 5 Types of States in React? The helping guide to know your states in React better. Vithushan Jey explains the types of states such as Logical, Server, Form, Navigation, and Browser. Also, it will help 25.12% of the developers who would like to learn React.

  14. 14
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Learn React by Building an eCommerce Site

    React is one of the most popular front-end frameworks for JavaScript. This course will teach you how to use React by building an e-Commerce application with class components. The course covers topics such as component basics, rendering various items in components, parent-to-child component communication, lifecycle methods, forms, and basic routing.

  15. 15
    Article
    Avatar of devtoDEV·4y

    Common React performance mistakes 💣

    React.memo is mainly used to memoize the whole component. Don't use it in a component that props is frequently changing. In-line functions shouldn't be called without arrow functions. Use the same set of rules that can be applied to useMemo too.

  16. 16
    Article
    Avatar of react_nativeReact Native·5y

    Announcing React Native 0.66 · React Native

    React Native v0.66 for Android 12 and iOS 15 support alongside fixes and general updates. New app template now includes a CocoaPods workaround (thanks to @mikehardy!). New Bluetooth permissions on Android and we plan to update the targetSDKVersion to 31 in the next release.

  17. 17
    Article
    Avatar of jsPlainEnglishJavaScript in Plain English·4y

    I made a top-down game version of my blog with Phaser and React

    I made a top-down game version of my blog with Phaser and React. The idea was born when I added Konami Code to my website. All the blog data is available in React via GraphQL anyway. Using the grid-engine Phaser plugin is easy-peasy, just configure your game to use arcade physics.

  18. 18
    Article
    Avatar of devtoDEV·4y

    React with Typescript

    A single page web application will contain two components. One is a form where a user will give necessary inputs about his favourite series and another is a list containing those serieses. The data will be stored in a state named seriesList and updated with the help of setSeriesList method.

  19. 19
    Article
    Avatar of newstackThe New Stack·5y

    All About Svelte, the Much-Loved, State-Driven Web Framework – The New Stack

    Svelte is an open source web user interface framework for defining a web interface with components. It is implemented as a compiler, written in TypeScript, and is designed to do as much of the work as it can at build time, rather than in the browser. The framework is being used by a range of companies, including Apple and Spotify.

  20. 20
    Article
    Avatar of freecodecampfreeCodeCamp·5y

    React.useEffect Hook – Common Problems and How to Fix Them

    React.useEffect Hook – Common Problems and How to Fix Them. Iva Kop – Common problems and how to fix them. React.use effect Hook – How to fix common problems andHow to Fix them. iReport.com: Do you have a problem with React? Share your story.

  21. 21
    Article
    Avatar of rubylaRUBYLAND·5y

    Frontend JavaScript News Brief (Q3 2021)

    Honeybadger's quarterly briefings keep you up to date on the most important developments in your programming communities. We curate the news so you can spend more time focusing on what's really important. Upcoming and recently completed Conferences and meetups. Recent vulnerability reports. Summaries of the big topics everyone's talking about.

  22. 22
    Article
    Avatar of devdojoDevDojo·4y

    Pro Tips to Search on Google 🔥

    Googling is the most important skill a developer. Most people don’t know how to google. Googling require a certain ingenuity and hack in order to find exactly what you are looking for. There are many tricks you can use and here you can find the pro tips.

  23. 23
    Article
    Avatar of devtoDEV·5y

    React Project Architecture

    I’ve been developing applications with React for a long time and I’m loving it more and more. React is such an amazing library for creating application architecture. It’s offering the opportunity of applying basic software principles (like SOC , like SOLID ..) on our project and keeping codebase clean even if our project scale grows.

  24. 24
    Article
    Avatar of devtoDEV·4y

    How to Turn Google Sheets into a REST API and Use it with a React Application

    Semantic UI is a framework used to design and develop beautiful and responsive layouts. It has components for Buttons, Containers, Lists, Inputs, and much more. Posting data to API's has never been easy. Have you ever used React to post form data to Google Sheets? If not, then this tutorial is for you.

  25. 25
    Article
    Avatar of css_tricksCSS-Tricks·5y

    Links on React and JavaScript II

    React is the web's most popular framework. Frontend Masters has the best courses on the web for React. Includes a complete learning course from the best teachers in JavaScript. Wanna learn React deeply? Take our React deep learning course. Back to Mail Online home. back to the page you came from.