Best of Backend DevelopmentFebruary 2022

  1. 1
    Article
    Avatar of hnHacker News·4y

    Yes, I can connect to a DB in CSS

    A new set of APIs give your browser the power to control CSS via its own Object Model in Javascript. This means that you can make custom CSS styles, add custom properties, and so on. The CSS Paint Worklet5 allows you to 'paint' on an element, and have the browser treat it as an image in CSS.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    What Backend Should You Use for React?

    In every React project, we manage data on the client through state and user interactions. Many apps are not possible without data that comes from the backend. Backend consists of two parts: A place to store our data and a method for retrieving the data. What type of backend you choose depends upon some key features of your data.

  3. 3
    Article
    Avatar of dzDZone·4y

    How Good Is Node.js for Backend Development?

    Node.js is a back-end and open-source coding platform that allows you to write server-side enterprise-level too scripts. The platform is efficient and lightweight. It also allows developers to code both front and back end, which acts as a boon for web development. It is extremely fast at converting Javascript code into machine code because it runs on Google’s V8 engine.

  4. 4
    Article
    Avatar of quastorQuastor Daily·4y

    The Architecture of Databases

    The Architecture of Databases by Alex Petrov. The various components: Transport System, Query Processor, Execution Engine, and the Storage Engine. How these components interact with each other. Some tech snippets on an amazing GitHub repo on Security Engineering. Extreme HTTP Performance Tuning How to build a second brain as a software engineer.

  5. 5
    Article
    Avatar of hnHacker News·4y

    Postman Now Supports gRPC

    Postman now supports gRPC. Postman v9.7.1 and above is currently in open beta. The API platform also understands WebSockets, Socket.IO, and GraphQL. In the future, we hope to provide these same features for other API schemas, like OpenAPI.

  6. 6
    Article
    Avatar of faunFaun·4y

    Caching System Stability

    Cache penetration is the request for non-existent data. Cache Breakdown is the expiration of hot data, because it is hot. Cache Avalanche is when a large number of simultaneously loaded caches have the same expiration time. Use distributed cache to prevent cache avalanche caused by a single point of failure.