Best of Axios2023

  1. 1
    Article
    Avatar of amplicationAmplication·3y

    7 Tips to Build Scalable Node.js Applications

    Node.js is a JavaScript framework created on Chrome's V8 JavaScript engine. If used correctly, it can be used to build highly scalable mission-critical applications. This article will discuss several tips which can be helpful when it comes to building scalable applications.

  2. 2
    Article
    Avatar of asayerasayer·3y

    React: Performing Authentication with JWT

    This article will discuss how to perform JWT authentication in a React app. We will cover the steps involved in setting up a backend JWT endpoint, signing up and signing in from your React app, and protecting routes with JWT validation. You will use a custom-built Express server API to relay the JWT token for a user.

  3. 3
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    How to Fetch API Data in React

    This article discusses different methods and tools to fetch API data in React. It explains the importance of APIs in web development, the types of HTTP requests, and provides examples of how to use the stale-while-revalidate (SWR) method, the fetch() method, React Query, Axios library, and the useFetch custom hook from react-fetch-hook to fetch data. Each method has its advantages and can improve programming skills in creating reliable apps.

  4. 4
    Article
    Avatar of asayerasayer·3y

    Creating a Weather app with Next.js

    The app will use the OpenWeatherMap API to get its weather forecast, time and date, and the icons needed. To start the project, you must have an Open weatherMap API account. You must create an account and have an API key for this project. You can create as many API keys as possible.

  5. 5
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    The REST API Handbook – How to Build, Test, Consume and Document REST APIs

    The REST API Handbook - How to Build, Test, Consume and Document REST APIs. This tutorial aims to show you an example of how you can fully implement a REST API. We'll cover basic setup and architecture with Node and Express, unit testing with Supertest, and documenting the API using tools such as Swagger.

  6. 6
    Article
    Avatar of discdotDiscover .NET·3y

    How (And Why?) To Wrap External Libraries?

    Learn how and why to wrap external libraries to make your life easier and abstract your code from their implementation details.

  7. 7
    Article
    Avatar of communityCommunity Picks·3y

    The Complete Guide to Becoming a Web Developer: Part 4

    AJAX (Asynchronous JavaScript and XML) is like a secret agent for your web page. It works behind the scenes, communicating with the server, fetching data, and updating the web page without reloading the entire page. API (Application Programming Interfaces) provides a list of operations that are available for you to use.

  8. 8
    Article
    Avatar of asayerasayer·3y

    Build a Twitter clone with Strapi

    Strapi is a headless CMS capable of being integrated into web and mobile applications. With Strapi, the developer can easily build flexible user interfaces and append content from the CMS. This article will demonstrate Strap iCMS in action by building a Twitter clone application. The Twitter clone will have a newsfeed and tweet creation section.

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

    Moving from Wordpress to Builder.io

    Migrating content from your existing CMS to Builder.io can be straightforward and fast. Using these techniques, you can smoothly migrate hundreds or even thousands of pages as many of our customers do. Visually build with your components.io is a visual editor that connects to any site or app and lets you drag and drop with your Components.

  10. 10
    Article
    Avatar of telerikTelerik·3y

    How to Use Axios with Vue.js

    Axios is a popular JavaScript HTTP client library that is used on frontend apps. It has an easy-to-use API that lets us make all types of HTTP requests. In our Vue apps, we often need to make requests to external APIs via HTTP to send and receive data. We can install the Axios library easily.

  11. 11
    Article
    Avatar of dzDZone·3y

    How to Use IP Geolocation in React

    How to use IP geolocation in React - DZone How to Use IP Geolocated in React is a tutorial. You will then be able to fetch data by IP address. Join the DZone community and get the full member experience.

  12. 12
    Article
    Avatar of asayerasayer·3y

    Building an Application with React Query

    This article will show you how to use the library to simplify handling server state, saving time and effort. In this article, we will build a lyrics-finder app, focusing on the benefits of React Query like fetching and caching data from an API. This tutorial will help you spend less time handling your server data in React.