Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
vite-plugin-checker
Advanced tools
Vite plugin that runs TypeScript type checker on a separate process.
vite-plugin-checker is a Vite plugin that provides various types of code checking functionalities, such as TypeScript, VLS (Vetur Language Server), and ESLint. It helps developers catch errors and enforce coding standards during the development process.
TypeScript Checking
This feature enables TypeScript checking in your Vite project. It ensures that TypeScript errors are caught during the development process.
import { defineConfig } from 'vite';
import Checker from 'vite-plugin-checker';
export default defineConfig({
plugins: [
Checker({ typescript: true })
]
});
VLS (Vetur Language Server) Checking
This feature integrates VLS (Vetur Language Server) checking into your Vite project, which is particularly useful for Vue.js projects. It helps catch errors and enforce coding standards for Vue components.
import { defineConfig } from 'vite';
import Checker from 'vite-plugin-checker';
export default defineConfig({
plugins: [
Checker({ vls: true })
]
});
ESLint Checking
This feature enables ESLint checking in your Vite project. It helps enforce coding standards and catch linting errors in your JavaScript/TypeScript code.
import { defineConfig } from 'vite';
import Checker from 'vite-plugin-checker';
export default defineConfig({
plugins: [
Checker({ eslint: { files: ['./src'] } })
]
});
vite-plugin-eslint is a Vite plugin that specifically focuses on integrating ESLint into your Vite project. It provides similar ESLint checking functionalities as vite-plugin-checker but does not offer TypeScript or VLS checking.
vite-plugin-ts-checker is a Vite plugin that focuses on TypeScript type checking. It provides similar TypeScript checking functionalities as vite-plugin-checker but does not offer ESLint or VLS checking.
vite-plugin-vue is a Vite plugin that provides Vue.js support, including VLS (Vetur Language Server) integration. It offers similar VLS checking functionalities as vite-plugin-checker but does not provide TypeScript or ESLint checking.
A Vite plugin that can run TypeScript, VLS, vue-tsc, ESLint in worker thread.
History version documentations 0.1, 0.2, 0.3. It's highly recommended to use latest version before 1.0.0, although there's some breaking changes, the plugin configuration is quite simple.
Examples | StackBlitz |
---|---|
Vue3 + vue-tsc | ⚡️ StackBlitz |
React + TypeScript | ⚡️ StackBlitz |
ESLint | ⚡️ StackBlitz |
Vue2 + VLS | ⚡️ StackBlitz |
Multiple | ⚡️ StackBlitz |
Install plugin.
pnpm add vite-plugin-checker -D
Add plugin to Vite config file. Add the checker you need. We add TypeScript below as an example. See all available checkers here.
// vite.config.js
import checker from 'vite-plugin-checker'
export default {
plugins: [checker({ typescript: true })], // e.g. use TypeScript check
}
Open localhost page and start development 🚀.
💡 Caveats:
server.ws.on
is introduced to Vite in 2.6.8. vite-plugin-checker relies on server.ws.on
to bring diagnostics back after a full reload and it' not available for older version of Vite.For each checker config field below:
true
to use a checker with its default value (except ESLint).false
to disable the checker.Make sure typescript is installed as a peer dependency.
Add typescript
field to plugin config.
export default {
plugins: [checker({ typescript: true /** or an object config */ })],
}
Advanced object configuration table of options.typescript
field | Type | Default value | Description |
---|---|---|---|
root | string | Vite config root | Root path to find tsconfig file |
tsconfigPath | string | "tsconfig.json" | Relative tsconfig path to root |
buildMode | boolean | false | Add --build to tsc flag, note that noEmit does NOT work if buildMode is true (#36917) |
Make sure vue-tsc & typescript are installed as a peer dependency of your Vite project.
⚠️ The vue-tsc
version must >= 0.33.9
.
pnpm add vue-tsc@latest typescript -D
Add vueTsc
field to plugin config.
export default {
plugins: [checker({ vueTsc: true /** or an object config */ })],
}
Advanced object configuration table of options.vueTsc
field | Type | Default value | Description |
---|---|---|---|
root | string | Vite config root | Root path to find tsconfig file |
tsconfigPath | string | "tsconfig.json" | Relative tsconfig path to root |
(Optional for Vue2 user) The type check is powered by vue-tsc
so it supports Vue2 according to the documentation, you need to install @vue/runtime-dom
by yourself.
Make sure eslint and related plugins for your eslintrc
are installed as peer dependencies.
(Optional but highly recommended) Install optionator@^0.9.1
with your package manager. It's needed because of ESLint dependents on it. It's probably working fine even it's not installed as it's accessed as a phantom dependency. But when you set hoist=false
of pnpm. It won't be accessible anymore without explicit installation.
Add eslint
field to plugin config and options.eslint.lintCommand
is required. The lintCommand
is the same as the lint command of your project. The default root of the command uses Vite's root.
// e.g.
export default {
plugins: [
checker({
eslint: {
lintCommand: 'eslint "./src/**/*.{ts,tsx}"', // for example, lint .ts & .tsx
},
}),
],
}
Advanced object configuration table of options.eslint
field | Type | Default value | Description |
---|---|---|---|
lintCommand | string | This value is required | lintCommand will be executed at build mode, and will also be used as default config for dev mode when eslint.dev.eslint is nullable. |
dev.overrideConfig | ESLint.Options | undefined | (Only in dev mode) You can override the options of the translated from lintCommand . Config priority: const eslint = new ESLint({cwd: root, ...translatedOptions, ...pluginConfig.eslint.dev?.overrideConfig, }) . |
dev.logLevel | ('error' | 'warning')[] | ['error', 'warning'] | (Only in dev mode) Which level of ESLint should be emitted to terminal and overlay in dev mode |
Make sure vls is installed as a peer dependency, plugin will use vls as the check server.
pnpm add vls -D
Add vls
field to plugin config.
module.exports = {
plugins: [checker({ vls: true })],
}
Advanced object configuration of options.vls
VLS configuration accepts the same values that can be configured in VS code with keys that start with vetur
.
These are configured with nested objects rather than dotted string notation. TypeScript intellisense is available.
See initParams.ts
for a comprehensive list of the defaults that can be overridden. Unfortunately, Vetur does not provide a single comprehensive document of all its options.
For example, to performing checking only the <script>
block:
checker({
vls: {
vetur: {
validation: {
template: false,
templateProps: false,
interpolation: false,
style: false,
},
},
},
}),
Below is some common configuration to control the behaviors of the plugin.
{
/**
* Show overlay on UI view when there are errors or warnings in dev mode.
* - Set `true` to show overlay
* - Set `false` to disable overlay
* - Set with a object to customize overlay
*
* @defaultValue `true`
*/
overlay:
| boolean
| {
/**
* Set this true if you want the overlay to default to being open if errors/warnings are found
* @defaultValue `true`
*/
initialIsOpen?: boolean
/**
* The position of the vite-plugin-checker badge to open and close the diagnostics panel
* @default `bl`
*/
position?: 'tl' | 'tr' | 'bl' | 'br'
/**
* Use this to add extra style to the badge button, see details of [Svelte style](https://svelte.dev/docs#template-syntax-element-directives-style-property)
* For example, if you want to hide the badge, you can pass `display: none;` to the badgeStyle property
*/
badgeStyle?: string
}
/**
* stdout in terminal which starts the Vite server in dev mode.
* - Set `true` to enable
* - Set `false` to disable
*
* @defaultValue `true`
*/
terminal: boolean
/**
* Enable checking in build mode
* @defaultValue `true`
*/
enableBuild: boolean
}
Run projects in playground/*
to try it out.
pnpm i
pnpm run build
cd ./playground/<one_exapmple> # choose one example
pnpm run dev # test in serve mode
pnpm run build # test in build mode
MIT License © 2022 fi3ework
FAQs
Vite plugin that runs TypeScript type checker on a separate process.
The npm package vite-plugin-checker receives a total of 0 weekly downloads. As such, vite-plugin-checker popularity was classified as not popular.
We found that vite-plugin-checker demonstrated a healthy version release cadence and project activity because the last version was released less than 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 threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.