
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@vivareal/tracking
Advanced tools
A set of tracking helpers based on our schemas repository
// ../tracking.js
import { Tracking } from '@vivareal/tracking';
export default new Tracking({
getBaseSchema: () => {
// get info from base schema
// ...
return {
foo: 'bar',
bar: 'foo',
};
},
});
| Option | default | Desc |
|---|---|---|
| getBaseSchema | () => {} | Get project base schema info |
import Vue from 'vue';
import { VueTracking } from '@vivareal/tracking';
import tracking from './tracking';
Vue.use(VueTracking, { tracking });
This will enable your project to use the tracker directly in components in a "Vue-way"
import { favoriteClicked } from '@vivareal/tracking';
// foo.js
export default {
methods: {
trackEvent() {
const schema = this.$tracking.getSchemaData(params, 'renameCollection', favoriteClicked);
this.$clickstream.trackEvent(schema);
},
},
};
// foo.js
import tracking from './tracking';
import { favoriteClicked } from '@vivareal/tracking';
const schema = tracking.getSchemaData(data, 'renameCollection', favoriteClicked);
| Method | Params | Desc |
|---|---|---|
| getSchemaData | data: obj, eventAction: String, schema: obj | Create desired schema |
// schema object example
{
create: (event, data) => {
const events = { myCustomEvent: { action: 'myCustomEvent' } };
return { ...data, ...events[event] };
},
rules: {
required: ['id', 'event'],
event: 'myCustomEvent'
}
}
| Event | Description | Used In |
|---|---|---|
| favoritePanelClicked | Whenever the user open/closes the favorites modal | oz-assets, don-corleone |
| favoriteClicked | whenever the user actually take an action on favarite modal | oz-assets, don-corleone |
| favoriteCollectionClicked | whenever the user actually take an action on favorite modal of remove or add a favorite | oz-assets, don-corleone |
| galleryClicked | whenever the user open/swipes a photo of gallery | oz-assets, don-corleone |
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
yarn dev
yarn test
yarn test:watch
Build to dist folder
yarn run build
This project relies on prettier to automatically format the code.
In the precommit hook, your code will be checked against eslint and prettier rules to avoid sending bad formatted code to production.
See root's README file
Vscode has some issues with debug in the newest version of ECMA Script. So we need to build first the module and call the functions with an entry point.
To debug create a .vscode folder and launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/dist/entry-point.js"
}
]
}
And then build your package
yarn build
And now you call the modules inside on entry-point.js at dist folder. eg:
const { Tracking } = require('./tracking');
import { favoriteClicked } from '@vivareal/tracking';
const data = {
...
};
const tracking = new Tracking({
getBaseSchema: () => {
// ..
},
});
tracking.getSchemaData(data, 'renameCollection', favoriteClicked);
FAQs
A set of tracking events helpers
The npm package @vivareal/tracking receives a total of 77 weekly downloads. As such, @vivareal/tracking popularity was classified as not popular.
We found that @vivareal/tracking demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 118 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.