
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
ndla-tracker
Advanced tools
NDLA's tracker for google tag manager.
# Using npm:
$ npm install ndla-tracker --save
# Using yarn:
$ yarn add ndla-tracker
To use the tracker you need to configure the tracker with correct google analytics id, google tag manager id and a listener for when the history changes:
import createHistory from 'history/createBrowserHistory';
import { configureTracker } from 'ndla-tracker';
const browserHistory = createHistory();
configureTracker({
listen: browserHistory.listen,
gaTrackingId: 'someGoogleAnalyticsId',
googleTagManagerId: 'someGoogleTagMangerId',
});
ReactDOM.render(
...,
document.getElementById('app'),
);
Tracking can be used in two different ways. Either with a default React component called HelmetWithTracker:
import { HelmetWithTracker } from 'ndla-tracker';
const SomeTrackableComponent = ({title}) => {
return (
<div>
<HelmetWithTracker title={title} />
<p>A paragraph (hopefully)</p>
</div>
);
};
export default SomeTrackableComponent;
or you can customize when the tracking should be done and add dimensions:
import Helmet from 'react-helmet'
import { withTracker } from 'ndla-tracker';
class SomeTrackableComponent extends React.Component {
static getDocumentTitle(currentProps) {
return currentProps.title;
}
static willTrackPageView(trackPageView, currentProps) {
const { condition } = currentProps;
if (condition) {
trackPageView(currentProps);
}
}
/*
Add this function if you want to add custom dimensions to google tag manager or google analytics.
*/
static getDimensions(props) {
return {
ga: {
dimensionGAOne: 'Some dimension in ga',
},
gtm: {
dimensionGTMOne: 'Some dimension in gtm',
},
};
}
render() {
const ({ title }) = this.props;
return (
<div>
<Helmet>
<title>{`${this.constructor.getDocumentTitle(this.props)}`}</title>
</Helmet>
<p>A paragraph (hopefully)</p>
</div>
);
}
}
export default withTracker(SomeTrackableComponent);
| Props | Type | Required | Description |
|---|---|---|---|
| title | String | * | A title (meta) used for the tracker. |
FAQs
A simple library for tracking NDLA applications
We found that ndla-tracker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.