
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.
Generate icons for mobile apps and browser extensions/plugins
$ npm install --save genicon
This library depends on GraphicsMagick, so be sure to install this library as well.
$ brew install graphicsmagick
$ sudo apt-get install graphicsmagick
Manual installation or via chocolatey.
$ choco install graphicsmagick
const genicon = require("genicon");
genicon("icon.png", { platform: "android" }).then(() => {
// icons generated
});
genicon("icon.svg", {
platform: "ios",
background: "#ff0000",
contentRatio: 1,
}).then(() => {
// icons generated
});
Type: string
Source file of the icon.
Required
Type: string
Values: android blackberry10 chrome ios pwa
Platform to generate the icons for.
Type: string
Default: white
Color of the icon background if the icon is transparant.
Type: number
Default: 1
Logo-icon ratio. 1 means the logo will fill up the entire width (or height) of the icon, 0.5 means it will only fill up half of the icon.
Type: boolean
Default: true (only for Android and PWA)
Boolean indicating if the generated icons should have rounded corners. This is true by default for the Android and PWA platform, false otherwise.
Type: number
Default: 0.0909
The corner radius percentage of the generated icon. The default value is 9.09%. See the material design styleguide for more information.
Type: string
Default: process.cwd()
Directory to save the generated icons.
The supported platforms are Android, BlackBerry 10, Chrome, iOS, and PWA. Every platform generates a different set of icons.
mipmap-ldpi/icon.pngmipmap-mdpi/icon.pngmipmap-hdpi/icon.pngmipmap-xhdpi/icon.pngmipmap-xxhdpi/icon.pngmipmap-xxxhdpi/icon.pngicon-90.pngicon-96.pngicon-110.pngicon-144.pngicon-16.pngicon-32.pngicon-48.pngicon-96.pngicon-128.pngicon-16.pngicon-32.pngicon-48.pngicon-96.pngicon-128.pngicon.pngicon@2x.pngicon-small.pngicon-small@2x.pngicon-small@3x.pngicon-20.pngicon-40.pngicon-40@2x.pngicon-40@3x.pngicon-50.pngicon-50@2x.pngicon-60.pngicon-60@2x.pngicon-60@3x.pngicon-72.pngicon-72@2x.pngicon-76.pngicon-76@2x.pngicon-83.5@2x.pngicon-72x72.pngicon-96x96.pngicon-128x128.pngicon-144x144.pngicon-152x152.pngicon-192x192.pngicon-384x384.pngicon-512x512.pngMIT © Andre Fortin
FAQs
Generate icons for mobile apps and broswer extensions/plugins.
We found that genicon 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.