Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@horacehylee/react-app-rewire-css-modules
Advanced tools
Add [CSS Module](https://github.com/css-modules/css-modules) loaders to your [create-react-app](https://github.com/facebookincubator/create-react-app) via [react-app-rewired](https://github.com/timarney/react-app-rewired).
Add CSS Module loaders to your create-react-app via react-app-rewired.
CSS Module styles can be written in CSS or SASS.
This package is not yet published to the npm registry. Install from GitHub:
yarn add --dev codebandits/react-app-rewire-css-modules sass-loader node-sass
OR
npm install --save-dev codebandits/react-app-rewire-css-modules sass-loader node-sass
Use the following file extensions for any CSS Modules styles:
*.module.css
*.module.sass
*.module.scss
Files with the following file extensions will load normally, without the CSS Modules loader:
*.css
*.sass
*.scss
In your react-app-rewired configuration:
/* config-overrides.js */
const rewireCssModules = require('react-app-rewire-css-modules');
module.exports = function override(config, env) {
// ...
config = rewireCssModules(config, env);
// ...
return config;
}
In your React application:
// src/App.module.scss
.app {
color: aqua;
&:hover {
color: lawngreen;
}
}
// src/App.js
import React from 'react';
import styles from './App.module.scss';
export default ({text}) => (
<div className={styles.app}>{text}</div>
)
FAQs
Add [CSS Module](https://github.com/css-modules/css-modules) loaders to your [create-react-app](https://github.com/facebookincubator/create-react-app) via [react-app-rewired](https://github.com/timarney/react-app-rewired).
We found that @horacehylee/react-app-rewire-css-modules 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
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.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.