Warning
This package has been deprecated, if you're using Swetrix with Next.js - you should refer to our Next.js integration docs.
Official Swetrix Analytics integration for Next.js.
Run the following command to install in your project:
npm install @swetrix/nextjs
Or with yarn:
yarn add @swetrix/nextjs
You can now import, and use the Swetrix hook on your project:
// ./pages/_app.js
import { useSwetrix } from '@swetrix/nextjs'
function YourApp({ Component, pageProps }) {
useSwetrix('YOUR_PROJECT_ID')
return <Component {...pageProps} />
}
export default YourAppWhen developing in localhost, Swetrix does not send events to avoid using your quota.
You can enable debug mode to send events when testing things locally. It will also log messages to console.
// ./pages/_app.js
import { useSwetrix } from '@swetrix/nextjs'
function YourApp({ Component, pageProps }) {
useSwetrix('YOUR_SITE_ID', {
debug: true
})
return <Component {...pageProps} />
}
export default YourAppuseSwetrix hook accepts 3 parameters: PID, initOptions, pageViewsOptions.
See our documentation page for more details.
You can always contact us in case of any questions! :)
Feel free to contribute to the source code by opening a pull requests.
For any questions, you can open an issue ticket, refer to our FAQs page or reach us at contact@swetrix.com \
If you are selfhosting the Swetrix-API, be sure to point the apiUrl parameter to: https://yourapiinstance.com/log
You can support the project by donating us at https://ko-fi.com/andriir
We can only run our services by once again asking for your financial support!