Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
iconfont-map-builder
Advanced tools
Simple command tool to transform iconfont's css/codepoint file to a js mapping moudle .
I'm using the module in react-native-iconic-font to generate the iconic map file
install this tool via npm
npm install iconfont-map-builder -g
now use 'iconmap' command to transform css file
iconmap -f test/font-awesome-v4.4.0.css -p '^\.fa-([a-z0-9-]+?):before$'
this command will generate a js file (...-iconmap.js) in the same folder with css file. You can use it in your project in any way you like.
Example:
var getIconChar = require('your-iconmap-file.js');
//react native render
return (
<Text style={{fontFamily: 'fontawesome',fontSize:30}}>
map icon:{getIconChar('map')}
</Text>
);
FAQs
Transform iconfont's css file to js 'name-character' map
The npm package iconfont-map-builder receives a total of 0 weekly downloads. As such, iconfont-map-builder popularity was classified as not popular.
We found that iconfont-map-builder 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.