
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.
phoenix-client
Advanced tools
a nodejs project for connecting apache phoenix (a hbase SQL interface) #install
npm install phoenix-client
#dependency:
npm install java
#attention
According to your hbase version ,please change the /java/phoenix-4.0.0-incubating-client.jar
HBase 0.94 requires Apache Phoenix version 3.0
HBase 0.98.x requires Apache Phoenix version 4.0
.etc
#usage:
phoenix = require("phoenix-client");
//first param 'url' is required;
var db = new phoenix("jdbc:phoenix:nn1,192.168.0.121","username","passwd",["-Xmx1024m"]);
db.query("select * from t1 limit 1",function success(dataJson){ console.info(dataJson); },function error(e){ });
db.upsert("upsert into t1(name) values('gaozhu')",function success(){ console.info("upsert successfully"); },function error(e){ });
db.upsertMuti(["sql1","sql2"],function success(){ console.info("upsert successfully"); },function error(e){ });;
FAQs
a nodejs project for connecting apache phoenix (a hbase SQL interface)
The npm package phoenix-client receives a total of 9 weekly downloads. As such, phoenix-client popularity was classified as not popular.
We found that phoenix-client 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.