Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
material-ui
Advanced tools
Material-UI is a CSS framework and a set of React components that implement Google's Material Design specification.
Check out our documentation site for live examples. It's still a work in progress, but hopefully you can see where we're headed.
Material-UI is available as an npm package.
npm install material-ui
Use browserify and reactify for dependency management and JSX transformation. The CSS framework is written in Less, so you'll need to compile that as well.
Once material-ui is included in your project, you can use the components this way:
/**
* @jsx React.DOM
*/
var React = require('react'),
mui = require('material-ui'),
PaperButton = mui.PaperButton;
var SomeAwesomeComponent = React.createClass({
render: function() {
return (
<PaperButton type={PaperButton.Types.FLAT} label="Default" />
);
}
});
module.exports = SomeAwesomeComponent;
The styles are separated into 2 less files:
This allows you to override any variables defined in custom-variables.less without having to modify material-ui source files directly. For example, your main.less file could look something like this:
@import "node_modules/material-ui/dist/less/scaffolding.less";
//Define a custom less file to override any variables defined in scaffolding.less
@import "my-custom-overrides.less";
@import "node_modules/material-ui/dist/less/components.less";
Material-UI came about from our love of React and Google's Material Design. We're currently using it on a project at Call-Em-All and plan on adding to it and making it better. If you'd like to help, check out our gh-pages branch. We'd greatly appreciate any feedback you may have. :)
FAQs
React Components that Implement Google's Material Design.
The npm package material-ui receives a total of 33,741 weekly downloads. As such, material-ui popularity was classified as popular.
We found that material-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.