
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@kylegl/vueform
Advanced tools
Starter template for unplugin.
To use this template, clone it down using:
npx degit antfu/vueform my-unplugin
And do a global replace of vueform with your plugin name.
Then you can start developing your unplugin 🔥
To test your plugin, run: pnpm run dev
To release a new version, run: pnpm run release
npm i vueform
// vite.config.ts
import Starter from "vueform/vite";
export default defineConfig({
plugins: [
Starter({
/* options */
}),
],
});
Example: playground/
// rollup.config.js
import Starter from "vueform/rollup";
export default {
plugins: [
Starter({
/* options */
}),
],
};
// webpack.config.js
module.exports = {
/* ... */
plugins: [
require("vueform/webpack")({
/* options */
}),
],
};
// nuxt.config.js
export default {
buildModules: [
[
"vueform/nuxt",
{
/* options */
},
],
],
};
This module works for both Nuxt 2 and Nuxt Vite
// vue.config.js
module.exports = {
configureWebpack: {
plugins: [
require("vueform/webpack")({
/* options */
}),
],
},
};
// esbuild.config.js
import { build } from "esbuild";
import Starter from "vueform/esbuild";
build({
plugins: [Starter()],
});
FAQs
Register global imports on demand for Vite and Webpack
We found that @kylegl/vueform 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.