
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
awoo-pretty
Advanced tools
nice pretty links for awoo
npm install awoo-pretty
const awoo = require('awoo')
const plugin = require('awoo-pretty')
// enter our main function:
// the main function should be an async function so that
// it automatically returns a promise
awoo(async site => {
// we use the plugin
site.use(plugin)
// ...and initiate the build process
return site
})
By default, pretty operates on all HTML files (files that end with .html).
This can be changed easily by using a custom filter. A filter is a function that
takes a file and returns a boolean that describes whether that file should have
pretty enabled or not. A custom filter can look like this:
function myCustomFilter (file, options, files) {
return file.path.includes('my-dir/')
}
This filter only matches HTML files that are located in the my-dir directory.
To use the filter, just pass it into the plugin options:
awoo(async site => {
site.use(pretty, {filter: myCustomFilter})
return site
})
MIT (see LICENSE document)
FAQs
pretty links for awoo
We found that awoo-pretty 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.