
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
grunt-html-smoosher
Advanced tools
A grunt task which takes a html file, finds all the css and js links, and outputs a version with all the css and js written inline for ease of pasting into a cms
A grunt task which takes a html file, finds all the css and js links, and outputs a version with all the css and js written inline for ease of pasting into a cms
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-html-smoosher --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-html-smoosher');
In your project's Gruntfile, add a section named smoosher to the data object passed into grunt.initConfig().
grunt.initConfig({
smoosher: {
options: {
jsTags: { // optional
start: '<script type="text/javascript">', // default: <script>
end: '</script>' // default: </script>
},
},
all: {
files: {
'dest-index.html': 'source-index.html',
},
},
},
});
Minify scripts with UglifyJS.
grunt.initConfig({
smoosher: {
all: {
options: {
minify: true
},
files: {
'dest-index.html': 'source-index.html',
},
},
},
});
When you have absolute paths for your external assets, it helps to add the local address of your asset files; relative to uncompiled HTML file.
grunt.initConfig({
smoosher: {
all: {
options: {
jsDir: "../",
cssDir: "/Library/documents/sharedAssets/"
},
files: {
'dest-index.html': 'source-index.html',
},
},
},
});
Example
If the local cwd for your uncompiled file is /Library/documents/server/src/html then the above settings would resolve:
<script src="/assets/js/script.js" /> will use a local file at /Library/documents/server/src/js/script.js
<link href="/assets/css/styles.css" /> will use a local file at /Library/documents/sharedAssets/assets/css/styles.css
Defaults to
{
start: '<style>',
end: '</style>'
}
Defaults to
{
start: '<script>',
end: '</script>'
}
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
FAQs
A grunt task which takes a html file, finds all the css and js links, and outputs a version with all the css and js written inline for ease of pasting into a cms
We found that grunt-html-smoosher demonstrated a not healthy version release cadence and project activity because the last version was released 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.