
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
play-store-system
Advanced tools
npm i play-store-system
const pss = require('play-store-system');
const app = new pss();
app.getInfo("com.mojang.minecraftpe").then(info =>{
console.log(info)
});
const pss = require('play-store-system');
const app = new pss();
app.on('com.mojang.minecraftpe', {startMessage: true, repeat: true, ms: 500, displayErrors: false}, info => {
console.log(`${info.version}`);
});
The startMessage
property can alert when event initialize.
The repeat
property can start the event automatically without the update actually being released.
The ms
property defines a miliseconds for the time to check for updates.
The displayErrors
property defines whether you want to display annoying errors
const pss = require('play-store-system');
const app = new pss();
app.search({
term: "minecraft",
num: 5
}).then((appIds) => {
console.log(appIds);
});
The term
is the name of the application to application
The num
is the maximum number of applications found. The limit for applications found is 50.
const pss = require('play-store-system');
const app = new pss();
const apps = ['com.mojang.minecraftpe', 'com.supercell.clashofclans'];
for(let appId of apps){
app.on(appId, {}, (info) =>{
console.log(`new update of ${info.appId}, version: ${info.version}`);
});
}
FAQs
Simple play store api
The npm package play-store-system receives a total of 0 weekly downloads. As such, play-store-system popularity was classified as not popular.
We found that play-store-system 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.