Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Extract a list of stylesheets, scripts or HTML imports from HTML
npm install oust --save-dev
First include:
var oust = require('oust');
Resource links can then be extracted from either files:
<link rel="stylesheet">
oust({ src: 'test/sample/index.html' } , function ( hrefs ){
console.log( hrefs );
});
<script src>
oust({
src: 'test/sample/index.html',
selector: 'script',
attribute: 'src'
}, function ( srcs ){
console.log( srcs );
});
<link rel="import">
oust({
src: 'test/imports.html',
selector: 'link[rel="import"]',
attribute: 'href'
}, function ( hrefs ){
console.log( hrefs );
});
oust({
source: '<html><link rel="stylesheet" href="styles/main.css"></html>'
}, function ( hrefs ){
console.log( hrefs );
});
Attribute | Default | Description |
---|---|---|
src | `` | a valid path to the file you wish to parse |
source | `` | a valid string to parse for references |
selector | link[rel="stylesheet"] | a selector to query for |
attribute | href | an attribute to read from the selector query |
The second parameter to oust()
is a callback function which will include the array of resources discovered.
Released under an Apache 2 license. © Google 2014.
FAQs
Extract URLs to stylesheets, scripts, links, images or HTML imports from HTML
The npm package oust receives a total of 20,666 weekly downloads. As such, oust popularity was classified as popular.
We found that oust demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.