
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
vue-components-autodetect-webpack
Advanced tools
Inject Vue components to js file based on folder structure
Supply Chain Security
Vulnerability
Quality
Maintenance
License
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.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.