
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
vue-components-autodetect-webpack
Advanced tools
Inject Vue components to js file based on folder structure
Inject Vue components into your webpack bundle based on folder structure and filename. So you save a file to edit for every new component.
index.vue -> <index></index>
page/index.vue -> <page-index></page-index>
post/button/delete.vue -> <post-button-delete></post-button-delete>
folder/folder/file.vue -> <folder-folder-file></folder-folder-file>
this comment gets expanded into Vue Component list
// {{ inject-vue-components }}
so it will look like this
Vue.component('folder-file', require('folder/file.vue'));
or if you are using import
import vuecomp0 from 'folder/file.vue';
Vue.component('folder-file', vuecomp0);
Name | Type | Description | Default |
---|---|---|---|
path | {String} | The path to the folder where your vue components are | 'resources/assets/vue' |
separator | {String} | The separator in the Vue component name | '-' |
injectComment | {StringǀRegex} | The comment where the components will be injected (string adds // before) | /(//\s*{{\sinject-vue-components\s}}\n?)/ig |
exclude | {Array} | An array of paths/files to exclude, using path as base | [] |
type | {String} | The type of loading that should be used (require or import) | 'require' |
module: {
rules: [
{
test: /\.js$/,
use: [
// ... other loaders
{
loader: 'vue-components-autodetect-webpack',
options: {
path: 'resources/assets/vue',
separator: '-',
injectComment: /(\/\/\s*{{\s*inject-vue-components\s*}}\n?)/ig,
exclude: ['page'],
type: 'require'
}
},
// ... other loaders
]
},
]
}
npm install --save vue-components-autodetect-webpack
yarn add vue-components-autodetect-webpack
FAQs
Inject Vue components to js file based on folder structure
The npm package vue-components-autodetect-webpack receives a total of 3 weekly downloads. As such, vue-components-autodetect-webpack popularity was classified as not popular.
We found that vue-components-autodetect-webpack demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.