Best of AngularNovember 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·4y

    Advanced TypeScript

    Mapped types are a great way of transforming existing types into new types. We create the helper type that takes a type and maps all properties to be of return type.

  2. 2
    Article
    Avatar of communityCommunity Picks·4y

    React - Best Practices

    In JavaScript, you can adopt ES6 syntax to make your code cleaner. Don't Forget key Prop With map in JSX Always assign a unique value to the prop to every JSX element while mapping from an array. Use Ternary Operator instead of if/else if Statements makes your code bulky.

  3. 3
    Article
    Avatar of communityCommunity Picks·3y

    Is React going anywhere?

    React will be 10 years old on the 29th of May 2023 (finally recruiters are able to ask for 10 years of experience, without being a laughing stock) React is getting old, and when applications start to get old, you start finding issues, loads of them.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    TypeScript for React Developers – Why TypeScript is Useful and How it Works

    The idea behind this article is to go through the basics of TS and understand the benefits of TypeScript. In the second section of this article, I will cover the specifics of TS with React. This should help you decide if you want those benefits or not.

  5. 5
    Article
    Avatar of asayerasayer·4y

    All about JavaScript Events

    Javascript is used to make dynamic and interactive pages in the browser. Sometimes web developers use the Javascript event incorrectly, thereby not giving their webpages the perfect UI and UX it needs. It is a procedure that begins with the element that caused the event and then cascades up to the elements in the hierarchy that contain it.

  6. 6
    Article
    Avatar of angularAngular·4y

    Angular v15 is now available!

    Angular v15 is now available. Standalone APIs are now stable! In v14 we introduced new standalone APIs which enable developers to build applications without using NgModules. These APIs graduated from developer preview and are now part of the stable API surface. From here on we will evolve them gradually following semantic versioning.

  7. 7
    Article
    Avatar of thisdotThis Dot·3y

    Using React In Your Qwik Application

    Qwik is a new JavaScript framework by Misko Hevery, creator of Angular, for building frontend browser applications. React will be turning a decade old by May 2023, and React 18 was released in March 2022.

  8. 8
    Article
    Avatar of communityCommunity Picks·4y

    Movies app in 7 frameworks - which is fastest and why?

    A performance comparison of the same "movies" app built with 7 different frontend frameworks: Next.js, Angular, Nuxt, Lit, Astro, SvelteKit, and Qwik.

  9. 9
    Article
    Avatar of devtoDEV·4y

    Hexagonal architecture as a solution to the obsolescence of UI frameworks

    Hexagonal architecture is an architecture pattern created by Alistair Cockburn. The team announces the end of the development of the framework and an end of maintenance on December 31, 2021 (https://blog.angular.io/stable-angularjs-and-long-term)

  10. 10
    Article
    Avatar of honeypotHoneypot·4y

    My Angular Nightmares

    Angular is a well-known TypeScript-based frontend framework used to build scalable single-page applications. It has some significant drawbacks and challenges that bring nightmares to developers.

  11. 11
    Article
    Avatar of dzDZone·4y

    Learning Angular as a React Developer

    Developers can specialize in React or Angular as a front-end developer. Here's a tutorial for developers looking to learn how to use React as a React developer. Join the DZone community and get the full member experience.

  12. 12
    Article
    Avatar of dzDZone·4y

    Typescript Interview Questions and Answers

    TypeScript is one of the top frameworks for front-end programming for newcomers. The name and number of arguments can be the same for several functions, but the return type and parameter types need to be distinct. The overloading of functions with the same name, various types, and varying numbers of parameters is not supported by TypeScript.

  13. 13
    Article
    Avatar of jetbrainsJetBrains·3y

    WebStorm 2022.3: New UI Preview, Vue and Angular Improvements, and Vitest Support

    New UI Preview, Vue and Angular Improvements, and Vitest Support WebStorm 2022.3, our biggest update of the year, is here! This update is packed with new features and bug fixes to improve your development experience. You’ll find new project templates for Vite and Next.js and an updated template for Vue projects.

  14. 14
    Article
    Avatar of javacodegeeksJava Code Geeks·3y

    Form handling in React-js

    React is a flexible javascript library responsible for building reusable UI components. It is an open-source component-based frontend library responsible only for the view part of an application and works in a virtual document object model. This was a tutorial to understand form handling in a React-js application.