@walkeros/web-destination-plausible
v3.2.0
Published
Plausible web destination for walkerOS
Maintainers
Readme
Plausible Destination for walkerOS
This package provides a Plausible Analytics destination for walkerOS. Plausible is a simple, and privacy-friendly Google Analytics Alternative.
walkerOS follows a source → collector → destination architecture. This Plausible destination receives processed events from the walkerOS collector and transforms them into Plausible Analytics format, providing lightweight, privacy-focused web analytics without cookies or personal data collection.
Installation
npm install @walkeros/web-destination-plausibleUsage
Here's a basic example of how to use the Plausible destination:
import { startFlow } from '@walkeros/collector';
import { destinationPlausible } from '@walkeros/web-destination-plausible';
await startFlow({
destinations: {
plausible: {
code: destinationPlausible,
config: {
settings: {
domain: 'walkeros.io', // Optional, domain of your site as registered
},
},
},
},
});Configuration
| Name | Type | Description | Required | Example |
| -------- | -------- | -------------------------------------------------- | -------- | --------------- |
| domain | string | The domain of your site as registered in Plausible | No | 'walkeros.io' |
Contribute
Feel free to contribute by submitting an issue, starting a discussion, or getting in contact.
License
This project is licensed under the MIT License.
