
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
plugin-verify
Advanced tools
Verify a cordova plugin quickly with its own test sample project.
First, make sure cordova CLI is installed, if not yet, run:
npm install cordova -g
Now install the verify tool and use it to verify a cordova plugin:
npm install plugin-verify -g
plugin-verify <plugin_id_or_path> [ios | android | ...]
Example:
plugin-verify cordova-plugin-admobpro ios
plugin-verify nl.x-services.plugins.actionsheet android
It creates a demo cordova project and copy the files under demo/ or test/ for testing purpose.
Here are the steps that the tool actualy runs:
# create a demo project
cordova create ./tmp com.rjfun.demo Demo
cd ./tmp
# now add the plugin, cordova CLI will handle dependency automatically
cordova plugin add <plugin_id_or_path>
cordova platform add android
cordova platform add ios
# now remove the default www content, copy the demo html file to www
rm -r www/*;
cp -r plugins/<plugin_id>/test/* www/;
# now build and run the demo in your device or emulator
cordova emulate ios;
cordova emulate android;
A simple tool created by Raymond Xie, to verify his lots of plugins.
Any comments are welcome.
FAQs
Verify a Cordova plugin quickly with its sample index.html
We found that plugin-verify 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.