
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.
theme-library
Advanced tools
import adblockDetection from 'theme-library/module/adblock-detection'
import dataClipboard from 'theme-library/module/data-clipboard'
import dataLink from 'theme-library/module/data-link'
import dataSearch from 'theme-library/module/data-search'
import dataToggle from 'theme-library/module/data-toggle'
import urlParams from './module/url-params'
import utmBuilder from './module/utm-builder'
const head = document.querySelector('head')
const body = document.querySelector('body')
window.addEventListener('load', () => {
adblockDetection(head, body)
urlParams()
utmBuilder()
})
body.addEventListener('click', (event) => {
dataClipboard(event)
dataLink(event)
dataToggle(event)
})
body.addEventListener('submit', dataSearch)
-- OR --
<!DOCTYPE html>
<html lang="en">
<head>
...
<script
defer
src="https://cdn.jsdelivr.net/npm/theme-library/js/bundle.js"
></script>
...
</head>
<body>
...
</body>
</html>
FAQs
Theme Library
We found that theme-library demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
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.