
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
metalsmith-subresource-integrity
Advanced tools
A Metalsmith plugin that adds a subresouce
object to _metadata
. This allows the user to look up the hash from within
templates.
Example of setting up subresource integrity in code:
var metalsmith = require('metalsmith'),
subresourceIntegrity = require('metalsmith-subresource-integrity');
metalsmith(__dirname)
.use(subresourceIntegrity({
algorithm: 'sha512',
pattern: '*.{css,js}',
minimatchOptions: {
matchBase: true
}
})
.build();
Example of setting up subresource integrity in config:
{
"source": "src",
"destination": "build",
"plugins": {
"metalsmith-subresource-integrity": {
"algorithm": "sha512",
"pattern": "*.{css,js}",
"minimatchOptions": {
"matchBase": true
}
}
}
}
In the template, a hash can be found like so (the example uses underscore templates):
<link
href="/css/main.css"
integrity="<%= subresource['css/main.css'] %>"
/>
<script
src="/js/main.js"
integrity="<%= subresource['js/main.js'] %>"
></script>
Keep in mind that you will want to use this plugin after any file generation takes place (es6, coffeescript, sass) so the correct file names are found in the files list.
algorithm
defaults to sha512
. Can be either:
sha256
sha384
sha512
This is the hashing algorithm used.
pattern
defaults to *.{css,js}
. This is a
minimatch pattern to determine the
files to create subresource hashes for.
minimatchOptions
defaults to {matchBase: true}
. This is an Object
of
options for minimatch to tweak how
pattern
is applied.
FAQs
Metalsmith plugin for adding subresource integrity
We found that metalsmith-subresource-integrity 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.