
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.
@epam/changed
Advanced tools
Designed to track dependencies in package.json and check file modification time
Designed to track dependencies in package.json and check file modification time. Result is saved to local files, but not memory. Useful for task runners and builders, when you need to know is it necessary run rebuild someting.
changed.file(targetFile: string, dbFile?: string): Result
type Result = {
result: boolean; // is file modified
update: () => void; // update filemtime
};
changed.dependenciesdependencies(dbFile?: string, cwd?: string): Result
type Result = {
result: boolean; // has changed
update: () => void; // update filemtime
initial: boolean; // indicates first run
diff: Dict | null; // result difference
};
type Dict = { [name: string]: { $set: any, $was: any } };
const changed = require('@epam/changed');
const Path = require('path');
const buildPath = 'dist';
const styleChanged = changed.file(`src/style.scss`, Path.resolve(buildPath, '.style.dat'));
// do something useful with src/style.scss...
styleChanged.update();
const libsChanged = changed.dependencies(Path.resolve(buildPath, '.libs.dat'));
// do something...
styleChanged.update();
FAQs
Designed to track dependencies in package.json and check file modification time
We found that @epam/changed 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.