
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
speed-measure-vite-plugin
Advanced tools
Measures your vite plugins transform speed. Support vite >= v3
.
// vite.config.js
import smvp from 'speed-measure-vite-plugin'
export default defineConfig({
plugins: smvp([vue()]), // smvp(plugins, opts)
})
smvp(plugins, {
// Hooks to measure, defaults to ['transform']
hooks: ['transform', 'resolveId', 'load'],
// Sort function for output display, defaults to undefined
// Example: sort by time in descending order
sort: (a, b) => b - a,
// Maximum gap time to consider hook process complete (in ms)
// Used to detect when a hook batch is finished in dev mode
maxGapTimeOnce: 1000,
// maxTransformTimeOnce is deprecated, use maxGapTimeOnce instead
})
This plugin wraps your Vite plugins and measures the execution time of specified hooks. Since Vite doesn't provide direct access to lifecycle hooks for pages or the completion of hot updates in development mode, an approximate indication of the hook process completion is determined using a gap-based approach.
FAQs
Measures your vite plugin transform speed
The npm package speed-measure-vite-plugin receives a total of 16,391 weekly downloads. As such, speed-measure-vite-plugin popularity was classified as popular.
We found that speed-measure-vite-plugin 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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.