
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
astro-matomo
Advanced tools
pnpm add astro-matomo
npm install astro-matomo
yarn add astro-matomo
Options | Type | Description |
---|---|---|
enabled | boolean | Controls if the matomo script should be loaded |
host | string | Url to your matomo installation |
siteId | number | Matomo site id. |
heartBeatTimer? | number | If set the heart beat timer will be enabled |
disableCookies? | boolean | If set cookies will be disabled |
preconnect? | boolean | Will create a preconnect link pointing to the matomo host |
setCookieDomain? | string | Share the tracking cookie across multiple domains |
trackerUrl? | string | Defaults to matomo.php |
srcUrl? | string | Defaults to matomo.js |
customSrcUrl? | string | Optional. A full URL to the Matomo tracking script. If set, it overrides srcUrl . |
debug? | boolean | Activate debug mode |
partytown? | boolean | Adds Partytown support. Matomo added as: <script type="text/partytown">...</script> |
crossOrigin? | string | Set crossorigin attribute |
viewTransition? | boolean or { contentElement: string } | If true Matomo works in "SPA Mode" and will track every page visit after astro:page-load . When you pass a selector to contentElement Matomo is able to track new media files, forms and content |
// astro.config.mjs
import { defineConfig } from 'astro/config';
import matomo from 'astro-matomo';
// https://astro.build/config
export default defineConfig({
site: "https://example.lol",
integrations: [
matomo({
enabled: import.meta.env.PROD, // Only load in production
host: "https://analytics.example.lol/",
setCookieDomain: "*.example.lol",
trackerUrl: "js/", // defaults to matomo.php
srcUrl: "js/", // defaults to matomo.js
siteId: 666,
heartBeatTimer: 5,
disableCookies: true,
debug: false,
viewTransition: {
contentElement: "main"
}
}),
]
});
Go to demo directory:
cd demo
Go to the demo project and install the dev package:
pnpm install
npm install
Start the dev server:
pnpm run dev
npm run dev
FAQs
Matomo integration for Astro
The npm package astro-matomo receives a total of 482 weekly downloads. As such, astro-matomo popularity was classified as not popular.
We found that astro-matomo demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.