Security News
npm Updates Search Experience with New Objective Sorting Options
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
iconfont-webpack-plugin
Advanced tools
This release is rather for feedback purpose than for production usage.
This plugin tries to keep the usage and maintenance of icon fonts as simple as possible.
npm i --save-dev iconfont-webpack-plugin
var IconfontWebpackPlugin = require('iconfont-webpack-plugin');
// make sure you use the postcss loader:
module: {
loaders: [
{
test: /\.css$/,
loader: 'css-loader!postcss-loader'
}
]
},
// add the plugin
plugins: [
new IconfontWebpackPlugin()
]
After setting up the plugin your css has now a new feature:
font-icon
declarations
a:before {
font-icon: url('./account.svg');
transition: 0.5s color;
}
a:hover:before {
color: red;
}
and it will be compiled into:
@font-face {
font-family: i96002e;
src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAA.....IdAA==") format('woff');
}
a:before {
font-family: i96002e;
content: '\E000';
transition: 0.5s color;
}
a:hover:before {
color: red;
}
No.
Icon fonts are really good for decorative icons (where the icon is purely ornamental and doesn’t incorporate core meaning or functionality).
For critical icons without fallbacks (like a hamburger menu icon) you should rather use SVGs. But also JPEGs, PNGs and even GIFs have their use cases.
Pick the best solution for your problem - there is no silver bullet. With this plugin it is pretty easy to use pixel images, svgs and font-icons side by side.
SVGs have some disadvantages and lack certain features especially when used inside pseudo elements:
Like all technologies there are disadvantages when using icon fonts.
We tried to apply best practices to solve the main issues for you.
This project is licensed under MIT.
FAQs
Simple icon font handling for webpack
The npm package iconfont-webpack-plugin receives a total of 1,990 weekly downloads. As such, iconfont-webpack-plugin popularity was classified as popular.
We found that iconfont-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
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.