1.3.5 • Published 1 year ago

nuxt-3-axios v1.3.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Axios in Nuxt 3

npm version npm downloads License Nuxt

Axios in Nuxt 3 with batteries included for doing amazing things.

Features

Now you can get typed axios instance inside your nuxt app from Nuxt context

nuxt.config.ts

export default defineNuxtConfig({
  modules: [
    'nuxt-3-axios'
  ],
  axios:{
    baseURL: 'https://swapi.dev/api/'
    //options to pass Axios Config
  }
})

Axios config options here!

Example.vue

const { $axios } = useNuxtApp() 

const result = await $axios.get('/people/1')

// result =  {
// 	"name": "Luke Skywalker",
// }

Quick Setup

  1. Add nuxt-3-axios dependency to your project
# Using pnpm
pnpm add -D nuxt-3-axios

# Using yarn
yarn add --dev nuxt-3-axios

# Using npm
npm install --save-dev nuxt-3-axios
  1. Add nuxt-3-axios to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    'nuxt-3-axios'
  ],
  axios:{
    //options to pass to axios create https://axios-http.com/docs/instance
    baseURL: 'https://swapi.dev/api/'
  }
})

That's it! You can now use Axios in Nuxt 3 in your app ✨

Development

# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release
1.3.5

1 year ago

1.3.4

1 year ago

1.3.3

1 year ago

1.3.2

1 year ago

1.3.1

1 year ago

1.3.0

1 year ago

1.2.1

1 year ago