Best of AngularJune 2023

  1. 1
    Article
    Avatar of amplicationAmplication·3y

    Node.js Development: All You Need to Know

    Node.js can be considered a future-proof technology that every developer should know. It allows developers to use JavaScript on both the frontend and backend, making it the perfect choice for building scalable, high-performance applications. It was introduced in 2009 and revolutionalized the development world since it allowed developers to run JavaScript outside web browsers.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    Front End JavaScript Development Handbook – React, Angular, and Vue Compared

    Frontend frameworks offer structured approaches and pre-built components to streamline the coding process. These tools can help boost productivity by offering reusable components and abstracting complex tasks like DOM manipulation and state management. Frameworks promote code maintainability through modular development, making it easier to modify or replace individual components.

  3. 3
    Article
    Avatar of builderiobuilder.io·3y

    My Take on a Unified Theory of Reactivity

    My Take on a Unified Theory of Reactivity: I want to share my understanding of the current reactivity approaches and landscape. I think there are fundamentally three approaches to reactivity that we have seen in the industry thus far: Value-based; that is, dirty-checking.

  4. 4
    Article
    Avatar of communityCommunity Picks·3y

    TypeScript: Typing Form Events In React

    Typing Form Events in React differs from native events, with React providing its own types. In React the event handlers will receive as an argument a React event object, more commonly known as a "synthetic event" In React, the function itself is passed as the event handler instead of its name in string form.

  5. 5
    Article
    Avatar of ossphsOSSPH·3y

    Why small contributions matter greatly?

    When you're new to open source, a question often comes up is, "How big should my first PR be?" It's a valid question, but not everyone talks about it or realizes its significance. Small PRs are relatively rare compared to the multitude of small PRs, but they are much easier to handle.

  6. 6
    Article
    Avatar of communityCommunity Picks·3y

    Deploy to Vercel with a GitHub Action

  7. 7
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How to Use a Postman Mock Server with Angular

    A Postman Mock Server is a dummy API server that accepts requests to endpoints you create in a collection and returns the responses you specify in examples. There are multiple tools that can help with creating and using mock data, such as Postman and its mock servers. You can also integrate these tools in front end applications for use in development.