Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
apple-status-bar-webpack-plugin
Advanced tools
Place this after FaviconsWebpackPlugin to override apple status bar
If you use the awesome FaviconWebpackPlugin to generate favion and icons to support android and ios Add To Home Screen feature, you will notice the apple status bar style is set to 'black-translucent', which makes it a problem for web apps that have white or light background since you will notice a white bar bar on top of your Web App. This plugin solve this issue by giving your control over the status bar colour.
This plugin should be placed after FaviconsWebpackPlugin for it it work.
plugins: [
// Enable globals
new HtmlWebpackPlugin({
title: 'Engage Mobile',
template: paths.indexTemplate
}),
new FaviconsWebpackPlugin({
logo: path.join(__dirname, '../../static/icons/144x144_360.png'),
prefix: 'icons/',
icons: {
appleStartup: false
}
}),
new AppleStatusBarPlugin('black')
]
It's a super simple plugin, all you need to do is spcify the header color in the constructor
new AppleStatusBarPlugin('black')
FAQs
Place this after FaviconsWebpackPlugin to override apple status bar
The npm package apple-status-bar-webpack-plugin receives a total of 5 weekly downloads. As such, apple-status-bar-webpack-plugin popularity was classified as not popular.
We found that apple-status-bar-webpack-plugin 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.