
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
laravel-mix-make-file-hash
Advanced tools
Convert the default Laravel Mix querystring hashing to filename hashing.
Mix has querystring hashing by default which doesn't work too well with some caching systems.
Querystring hashing looks like this:
(OLD) main.css?id=abcd1234
After mix has done it's thing, this script converts that querystring hashing to filename hashing:
(NEW) main.abcd1234.css
This is not a Laravel mix plugin so use with mix.then()
like this:
if (mix.inProduction()) {
// Allow versioning in production
mix.version()
// Run after mix finishes
mix.then(() => {
const laravelMixMakeFileHash = require("laravel-mix-make-file-hash")
laravelMixMakeFileHash('web', 'web/mix-manifest.json')
})
}
laravelMixMakeFileHash(
publicPath,
manifestFilePath
)
It'll first look at your manifest, then create a new file with the updated hash and then remove the old file.
Most of the code is from tomgrohl on this Laravel Mix issue on querystring hashing
FAQs
Convert the default Laravel Mix querystring hashing to filename hashing.
The npm package laravel-mix-make-file-hash receives a total of 2,778 weekly downloads. As such, laravel-mix-make-file-hash popularity was classified as popular.
We found that laravel-mix-make-file-hash 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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
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.