
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
icon-splash-generator
Advanced tools
This tool will crop and resize PNG source images into appropriate sizes for modern iOS and Android devices.
This tool will crop and resize PNG source images to generate images for modern iOS and Android devices.
icon-splash-generator must run at the root of a standard Cordova project setup, such as:
resources/
├── icon.png
└── splash.png
resources/icon.png must be at least 1024×1024pxresources/splash.png must be at least 2732×2732px$ npm install icon-splash-generator
const run = require('icon-splash-generator');
await run();
run() takes an options object described by the interface Options. If options are provided, resources are generated in an explicit, opt-in manner. In the following example, only Android icons and iOS splash screens are generated.
import { Options, run } from 'icon-splash-generator';
const options: Options = {
directory: '/path/to/project',
resourcesDirectory: 'resources',
platforms: {
android: { icon: { sources: ['resources/icon.png'] } },
ios: { splash: { sources: ['resources/splash.png'] } },
},
};
await run(options);
FAQs
This tool will crop and resize PNG source images into appropriate sizes for modern iOS and Android devices.
We found that icon-splash-generator 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.