Best of REST APIMarch 2024

  1. 1
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    Comprehensive NestJS Course

    Learn NestJS and master the creation of robust backend APIs for real-world applications with a comprehensive course on freeCodeCamp.org. The course covers database design, REST API development, authentication, authorization, GraphQL, WebSocket integration, and more.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    Learn App Development with Spring Boot 3

    Learn app development with Spring Boot 3, an advanced framework for building enterprise-grade applications efficiently. The course covers the basics of Java development, project initialization, REST API creation, working with databases, rest clients, and testing.

  3. 3
    Article
    Avatar of asayerasayer·2y

    GraphQL vs REST APIs -- The Case Against GraphQL

    GraphQL offers efficient data retrieval, flexibility in queries, reduced number of requests, versioning and backward compatibility, and real-time data with subscriptions. However, it also has challenges in implementation, performance, caching, and security. REST APIs remain preferable in scenarios involving simplicity, statelessness, caching, limited bandwidth, and a mature ecosystem. Transitioning to GraphQL requires consideration of the learning curve, schema design and migration, updating client-side implementations, backend adjustments and resolvers, and performance considerations. The decision depends on factors such as data complexity, scalability requirements, team expertise, data fetching efficiency, project scope and complexity, tooling and ecosystem support, and long-term maintainability.

  4. 4
    Article
    Avatar of lobstersLobsters·2y

    What is this architecture called?

    The post discusses a different architecture than the classical three-tier architecture, focusing on the presentation tier, logic tier, and data tier. It also explores the bifurcation of the logic tier's server into hot path categories.

  5. 5
    Video
    Avatar of communityCommunity Picks·2y

    Why you should prefer tRPC Over REST?

    tRPC is a typesafe way to implement APIs in TypeScript. It provides a way to write endpoints similar to REST, but with the added benefit of knowing exactly what type of data is coming back from the API.