
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
capacitor-plugin-pointzi
Advanced tools
How to install:
Install dependencies for Pointzi plugin.
npm i com.darktalker.cordova.screenshot
npm i cordova-plugin-app-version
npm i cordova-plugin-device
npm i cordova-plugin-device-name
npm i cordova-plugin-dialogs
npm i cordova-plugin-network-information
Install Pointzi in your Cordova project. Run this command in a console.
npm i capacitor-plugin-pointzi
You need copy asset files of plugin into your dist folder with following structure "/capacitor-plugin-pointzi/assets/". For example:
You can do that by edit your build configuration file. Assume that you are using angular, so you put this code into assets configuration section inside angular.json:
{
"glob": "**/*",
"input": "node_modules/capacitor-plugin-pointzi/src/assets",
"output": "./capacitor-plugin-pointzi/assets"
}
When you have done, it looks like:
{
"projects": {
"app": {
"architect": {
"build": {
"options": {
"assets": [
{
"glob": "**/*",
"input": "node_modules/capacitor-plugin-pointzi/src/assets",
"output": "./capacitor-plugin-pointzi/assets"
}
]
}
}
}
}
}
}
Add code into constructor of your root component. For example, assumed you use angular, your root component file is app.component.ts.
import { Plugins, StatusBarStyle } from '@capacitor/core';
import 'capacitor-plugin-pointzi';
const { Pointzi } = Plugins;
export class AppComponent {
constructor(private platform: Platform) {
this.initializeApp();
}
async initializeApp() {
Pointzi.load().then(function () {
Pointzi.register(APP_KEY, CUID).then(function () {
// Send String Tag
Pointzi.tag({
key: 'first_name',
string: 'My First Name',
});
});
});
}
}
Note: To get your APPKEY, go to dashboard.pointzi.com, it is name on the Top left. CUID is the name you want to give to your install-id. This name is up to you. For more info visit, Tagging documentation
FAQs
Poinzi Capacitor Plugin
We found that capacitor-plugin-pointzi demonstrated a not healthy version release cadence and project activity because the last version was released 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.