
Research
Security News
Malicious npm Packages Use Telegram to Exfiltrate BullX Credentials
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
@thedutchcoder/postcss-rem-to-px
Advanced tools
PostCSS plugin to convert rem values to px values
PostCSS plugin to convert rem
values to px
values.
.foo {
margin: 2rem;
}
.foo {
margin: 32px;
}
Step 1: Install plugin:
npm install --save-dev postcss postcss-rem-to-px
Step 2: Check you project for an existing PostCSS config: postcss.config.js
in the project root, "postcss"
section in package.json
or postcss
in bundle config.
If you do not use PostCSS, add it according to official docs and set this plugin in settings.
Step 3: Add the plugin to plugins list:
module.exports = {
plugins: [
+ require('@thedutchcoder/postcss-rem-to-px'),
require('autoprefixer')
]
}
You can set a baseValue
to represent the body's root pixel value for font-size
, which is the base for rem
values. The default baseValue
is 16.
module.exports = {
plugins: [
+ require('@thedutchcoder/postcss-rem-to-px', { baseValue: 10 }),
require('autoprefixer')
]
}
FAQs
PostCSS plugin to convert rem values to px values
The npm package @thedutchcoder/postcss-rem-to-px receives a total of 0 weekly downloads. As such, @thedutchcoder/postcss-rem-to-px popularity was classified as not popular.
We found that @thedutchcoder/postcss-rem-to-px 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 uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.
Security News
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.