
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
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 runs TypeScript / Vue / ... checks in worker thread.
npm i vite-plugin-checker -D
vite.config.js
Add vite-plugin-checker
to plugin filed of Vite config file.
// vite.config.js
import Checker from 'vite-plugin-checker'
export default {
plugins: [Checker(typescript: true)]
}
See detailed configuration in advanced config section.
Make sure typescript is installed as a peer dependency.
Modify config file
export default {
plugins: [Checker({ typescript: true })],
}
npm i vite-plugin-checker-vls -D
import Checker from 'vite-plugin-checker'
import VlsChecker from 'vite-plugin-checker-vls'
module.exports = {
plugins: [
Checker({
vls: VlsChecker(/** VLS options */),
}),
],
}
Only support checking in build mode since
vue-tsc
doesn't support watch mode for now.
Make sure vue-tsc is installed as a peer dependency.
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.
export default {
plugins: [Checker({ vueTsc: true })],
}
export default {
plugins: [Checker(config)],
}
The plugin config can be accept following fields
field | Type | Default value | Description |
---|---|---|---|
overlay | boolean | Same as server.hmr.overlay | Show overlay when has TypeScript error |
field | Type | Default value | Description |
---|---|---|---|
enableBuild | boolean | true | Enable checking in build mode |
true
to use checker with all default valuesfalse
to disable the checkerfield | Type | Default value | Description |
---|---|---|---|
root | string | Vite config root | Root path to find tsconfig file |
tsconfigPath | string | "tsconfig.json" | Relative tsconfig path to root |
import { VlsChecker } from 'vite-plugin-checker-vls'
// plugin config
{ vls?: VlsChecker() }
// plugin config
{ vueTsc?: boolean }
Run projects in examples/*
to try it out.
pnpm i
cd ./examples/<ONE_EXAMPLE>
npm run dev # for development
npm run build # for build
MIT
FAQs
Vite plugin that runs TypeScript type checker on a separate process.
The npm package vite-plugin-checker receives a total of 1,213,583 weekly downloads. As such, vite-plugin-checker popularity was classified as 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 2 open source maintainers 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.