What is unplugin-auto-import?
unplugin-auto-import is a powerful tool for automatically importing functions, components, and other modules in your JavaScript or TypeScript projects. It helps to reduce boilerplate code and improve development efficiency by eliminating the need to manually import frequently used modules.
What are unplugin-auto-import's main functionalities?
Automatic Import of Functions
Automatically imports functions from specified libraries (e.g., Vue and Vue Router) without needing to manually import them in each file.
module.exports = {
plugins: [
require('unplugin-auto-import/webpack')({
imports: ['vue', 'vue-router'],
}),
],
};
Custom Imports
Allows you to specify custom imports from libraries like Lodash, so you can use functions like debounce and throttle without manual imports.
module.exports = {
plugins: [
require('unplugin-auto-import/webpack')({
imports: [
{
'lodash': [
'debounce',
'throttle'
]
}
],
}),
],
};
TypeScript Support
Generates TypeScript declaration files for the auto-imported modules, ensuring type safety and better development experience.
module.exports = {
plugins: [
require('unplugin-auto-import/webpack')({
dts: true,
}),
],
};
ESLint Integration
Integrates with ESLint to ensure that auto-imported modules are recognized and do not trigger linting errors.
module.exports = {
plugins: [
require('unplugin-auto-import/webpack')({
eslintrc: {
enabled: true,
},
}),
],
};
Other packages similar to unplugin-auto-import
babel-plugin-auto-import
babel-plugin-auto-import is a Babel plugin that automatically imports specified modules when they are used in your code. It is similar to unplugin-auto-import but is specifically designed to work with Babel, making it a good choice for projects that already use Babel for transpilation.
eslint-plugin-import
eslint-plugin-import is an ESLint plugin that helps manage and validate import statements in your code. While it does not automatically import modules, it provides rules to ensure that imports are correctly used and can help prevent common issues related to imports.
unplugin-auto-import
Register global imports on demand for Vite, Rollup, and Webpack. With TypeScript supports. Powered by unplugin.
<script setup>
const count = ref(0)
const doubled = computed(() => count.value * 2)
</script>
to
<script setup>
import { ref, computed } from 'vue'
const count = ref(0)
const doubled = computed(() => count.value * 2)
</script>
export function Counter() {
const [count, setCount] = useState(0)
return <div>{ count }</div>
}
to
import { useState } from 'react'
export function Counter() {
const [count, setCount] = useState(0)
return <div>{ count }</div>
}
...and so on.
Install
npm i unplugin-auto-import
Vite
import AutoImport from 'unplugin-auto-import/vite'
export default defineConfig({
plugins: [
AutoImport({ }),
],
})
Example: playground/
Rollup
import AutoImport from 'unplugin-auto-import/rollup'
export default {
plugins: [
AutoImport({ }),
],
}
Webpack
module.exports = {
plugins: [
require('unplugin-auto-import/webpack')({ })
]
}
Nuxt
export default {
buildModules: [
['unplugin-auto-import/nuxt', { }],
],
}
This module works for both Nuxt 2 and Nuxt Vite
Vue CLI
module.exports = {
configureWebpack: {
plugins: [
require('unplugin-auto-import/webpack')({ }),
],
},
}
Configuration
AutoImport({
include: [
/\.[tj]sx?$/,
/\.vue\??/,
],
imports: [
'vue',
'vue-router',
{
'@vueuse/core': [
'useMouse'
],
'[package-name]': [
'[import-names]',
['[from]', '[alias]']
]
}
],
})
Refer to the type definitions for more options.
Presets
See src/presets.
FAQ
You can think this plugin as a successor of vue-global-api
, which offers much more flexibility and it's no longer bound to Vue exclusively. Now you can use it with any libraries you want (e.g. React).
Pros
- Flexible and customizable
- Tree-shakable (on-demand transforming)
- No global population
Cons
- Relying on build tools integrations (while
vue-global-api
is pure runtime) - but hey, we have supported quite a few of them already!
License
MIT License © 2021 Anthony Fu