legacy-modules VS axios-module

Compare legacy-modules vs axios-module and see what are their differences.

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
legacy-modules axios-module
1 6
1,290 1,192
-0.2% 0.0%
0.0 1.9
almost 2 years ago 14 days ago
JavaScript JavaScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

legacy-modules

Posts with mentions or reviews of legacy-modules. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-06-03.

axios-module

Posts with mentions or reviews of axios-module. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-04-29.
  • Create $fetch API Factory Pattern in Nuxt3
    1 project | /r/Nuxt | 28 Dec 2022
    Alright thank you for the link. You do seem to be correct and I also cross-checked it in the Axios Module link as well and it seems there isn't going to be an axios module for Nuxt 3 or at least this is what the phrasing conveys.
  • I'm Trying to Inject An NPM package As A Plugin on A Next.js App to Avoid A "Native Node.js APIs are not supported in the Edge Runtime. Found `child_process` imported." Error
    2 projects | /r/nextjs | 29 Apr 2022
    // Axios module configuration: https://go.nuxtjs.dev/config-axios axios: { // Workaround to avoid enforcing hard-coded localhost:3000: https://github.com/nuxt-community/axios-module/issues/308 browserBaseURL: process.env.API_URL },
  • Nuxt SSR page reload on a dynamic page
    1 project | /r/Nuxt | 3 Mar 2022
    my nuxt config is: // require("dotenv").config(); // const isProd = process.env.NODE_ENV === 'production' export default { // Global page headers: https://go.nuxtjs.dev/config-head ssr: true, target: 'static', generate: {fallback: true}, head: { title: 'Aura | Building the NFT infrastructure', htmlAttrs: { lang: 'en', }, meta: [ { charset: 'utf-8' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' }, { hid: 'description', name: 'description', content: 'Building the NFT infrastructure to enable seamless commerce to buy/sell/trade NFTs' }, { name: 'format-detection', content: 'telephone=no' }, ], link: [ { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }, { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Inter:wght@300;400;500;600;700&display=swap"', onload:"this.rel='stylesheet'"} ], }, // Global CSS: https://go.nuxtjs.dev/config-css css: [], loading: false, parallel: true, // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins plugins: [ { src: '~/plugins/aos.js', ssr: false }, { src: '~/plugins/mixpanel.js', ssr: false }, { src: '~/plugins/simple-shimmer.js', ssr: false }, { src: '~/plugins/vue-apexchart.js', ssr: false }, { src: '~/plugins/myFormatter.js', ssr: true }, { src: '~/plugins/axios', ssr: true }, { src: '~/plugins/font-awesome.js', ssr: true }, ], // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules buildModules: [ // https://go.nuxtjs.dev/eslint '@nuxtjs/eslint-module', // https://go.nuxtjs.dev/tailwindcss '@nuxtjs/tailwindcss', [ "@nuxtjs/google-analytics", { id: process.env.VUE_APP_GA_ID } ], ['@nuxtjs/fontawesome', { component: 'fa', imports: [ { set: '@fortawesome/free-solid-svg-icons', icons: ['faSpinner', 'faCaretUp', 'faCaretDown',] }, ] }], ], googleAnalytics: { id: process.env.VUE_APP_GA_ID // or use ({}).GOOGLE_ANALYTICS_ID }, publicRuntimeConfig: { googleAnalytics: { id: process.env.VUE_APP_GA_ID // or use ({}).GOOGLE_ANALYTICS_ID }, }, // Modules: https://go.nuxtjs.dev/config-modules modules: [ // https://go.nuxtjs.dev/axios "@nuxtjs/dotenv", '@nuxtjs/axios', "vue-toastification/nuxt", // You can also pass plugin options ["vue-toastification/nuxt", { timeout: 5000, draggable: true }], [ 'nuxt-compress', { gzip: { threshold: 8192, }, brotli: { threshold: 8192, }, }, ], ], // Axios module configuration: https://go.nuxtjs.dev/config-axios axios: { // Workaround to avoid enforcing hard-coded localhost:3000: https://github.com/nuxt-community/axios-module/issues/308 baseURL: process.env.VUE_APP_API_BASE_URL, }, cache: { useHostPrefix: false, pages: [/^\/$/], store: { type: "memory", max: 100, ttl: 60 } }, workbox: { runtimeCaching: [ { urlPattern: 'https://fonts.googleapis.com/.\*', handler: 'cacheFirst', method: 'GET', strategyOptions: { cacheableResponse: { statuses: [0, 200] } } } ] }, // Build Configuration: https://go.nuxtjs.dev/config-build build: { html: { minify: { collapseBooleanAttributes: true, decodeEntities: true, minifyCSS: true, minifyJS: true, processConditionalComments: true, removeEmptyAttributes: true, removeRedundantAttributes: true, trimCustomFragments: true, useShortDoctype: true } }, splitChunks:{ pages: true, commons: true }, optimization: { runtimeChunk: { name: (entrypoint) => `runtime~${entrypoint.name}`, }, minimize: true, splitChunks: { chunks: "all", name:true, cacheGroups: { styles: { name: 'styles', test: /\.(css|vue)$/, chunks: 'all', enforce: true } } } }, extend(config, { isDev, isClient, loaders: { vue } }) { config.resolve.symlinks = false; config.module.rules.push({ test: /\.(ttf|eot|svg|woff(2)?)(\?[a-z0-9=&.]+)?$/, loader: 'file-loader' }) if (isDev) { config.mode = 'development' } if(isDev) { config.devtool = isClient ? "eval-source-map" : "inline-source-map"; } } }, }
  • The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    1 project | /r/Nuxt | 5 Feb 2022
    // Workaround to avoid enforcing hard-coded localhost:3000: https://github.com/nuxt-community/axios-module/issues/308
  • Nuxt google tag manager
    3 projects | /r/Nuxt | 24 Jan 2022
  • Top 5 NuxtJS modules for your next project [2022 edition]
    9 projects | dev.to | 19 Dec 2021
    GitHub repo

What are some alternatives?

When comparing legacy-modules and axios-module you can also consider the following projects:

nuxt-speedkit - nuxt-speedkit will help you to improve the lighthouse performance score (100/100) of your website.

pwa-module - Zero config PWA solution for Nuxt.js

kiwix-js-pwa - Kiwix JS Offline Browser implemented as a Progressive Web App (PWA), and packaged as Electron, NWJS and UWP apps for Windows and Linux.

i18n - I18n module for Nuxt

vue-slide-up-down - Like jQuery's slideUp/slideDown/slideToggle, but for Vue!

apisauce - Axios + standardized errors + request/response transforms.

content - The file-based CMS for your Nuxt application, powered by Markdown and Vue components.

sitemap-module - Sitemap Module for Nuxt 2

recaptcha-module - 🤖 Simple and easy Google reCAPTCHA integration with Nuxt.js

url-request - The most advanced HTTP Client with Functional Chaining, Async/Await, Delay, Fork, Infinite Chaining and Repeat for building your Complex APIs easily.