Best of Frontend DevelopmentOctober 2022

  1. 1
    Article
    Avatar of changelogChangelog·4y

    remult/remult: A CRUD framework for full stack TypeScript

    Remult is a full-stack CRUD framework that uses your TypeScript entities as a single source of truth for your API, frontend type-safe API client and backend ORM. It abstracts away repetitive, boilerplate, error-prone and poorly designed code on the one hand. Using Remult means having the ability to handle any complex scenario by controlling the backend in numerous ways.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Build a Modal with JavaScript

    A pop-up window is called a modal, a web page element that pops up and displays in front of other page content. You can also use modals for other things like creating call-to-action elements, navigation menus, newsletter widgets, and more. In this tutorial, I'll walk you through { display: flex; align-items: center; justify-content: space-between; }.

  3. 3
    Article
    Avatar of asayerasayer·4y

    Top 7 Project Management Tools for Developers

    Jira has an interface that makes up the workspace for every developer. It focuses primarily on project management, with features geared towards Kanban and Scrum methodologies. Jira was intended to be a bug-tracking software, and it is where the tool excels. It helps the team find, track, and record software bugs. The tool can be customized to fit any requirement. The tool is difficult to set up and get used.

  4. 4
    Article
    Avatar of infoworldInfoWorld·4y

    The best open source software of 2022

    The best open source software of 2022 InfoWorld’s 2022 Bossie Awards celebrate the most important and innovative application development, devops, data analytics, and machine learning tools of the year. SvelteKit and Nuxt, as well as newer entrants like Blitz.js, are exploring new approaches and techniques.

  5. 5
    Article
    Avatar of btrprogBetter Programming·4y

    Exploring Yew — The Rust-based Frontend Framework

    Yew is a modern Rust-based framework for building frontend applications using WebAssembly. In this post, we will learn how to build a web application using open API data from DummyJSON and Yew as a React developer. The following are the similarities between the two technologies. The macro works similarly to JSX in React. To do this, we need to navigate to the src folder and create the component and model folder with their corresponding mod.rs file.

  6. 6
    Article
    Avatar of communityCommunity Picks·4y

    Server Side Rendering (SSR) vs. Client Side Rendering (CSR) vs. Pre-Rendering using Static Site Generators (SSG) and client-side hydration.

    A comprehensive guide to the concepts of Traditional Server Side Rendering (SSR), Static Rendering, SSR at build time, and Static Site Generators (SSG) and client-side hydration. In SSR the HTML components of the webpage are generated on the server-side, and then returned to the browser. In Client side rendering (CSR) the HTML parts of the website is generated in the browser. The browser must fully download the JS bundle.