New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

webpack-hash-cache

Package Overview
Dependencies
Maintainers
2
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-hash-cache

An experimental incremental build plugin for Webpack.

latest
Source
npmnpm
Version
0.4.8
Version published
Weekly downloads
33
-41.07%
Maintainers
2
Weekly downloads
 
Created
Source

HashCachePlugin

An experimental incremental build plugin for Webpack.

Incremental builds increase the speed of the development workflow by avoiding rebuilding unchanged entries. However, in large projects, the caching process can be expensive. HashCachePlugin uses Rust for resource-intensive caching, which accelerates the caching process.

Built with napi-rs!

Installation

yarn add -D webpack-hash-cache
npm install --save-dev webpack-hash-cache

Usage

import { HashCachePlugin } from 'webpack-hash-cache';

Add instance to the plugins array in webpack config:

plugins: [
    new HashCachePlugin()
]

Currently, you must specify a cache directory, either as an environment variable (CACHE_DIR), or as an option passed to plugin constructor.

FAQs

Package last updated on 17 Apr 2025

Did you know?

Socket

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.

Install

Related posts