
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@ddsys/material
Advanced tools
Read the docs · Request feature
The base HTML/CSS package for Digital Design System. A customised Material UI theme file with extra custom components. Also available in Bootstrap framework.
npm install @ddsys/material
yarn add @ddsys/material
Clone this GitHub repository to your project folder.
<MuiThemeProvider theme={createMuiTheme(Themes[index])}>
// add your components here. Like buttons and so on
<YourComponent> </YourComponent>
</MuiThemeProvider>
import { withStyles } from "@material-ui/core/styles";
// this theme contains BHP styles and colors
const styles = theme => {
return {
class_name_1: theme.styles.button.style,
class_name_2: {...theme.styles.button.style, "you can override styles here"},
};
};
function YourComponent(){
const { classes } = props;
// use class_name_1 in your component
return <div className={ classes.class_name_1 }> </div>
}
//wrap and export Your Component
export default withStyles(styles)(YourComponent);
Read more about Material UI theme on the offical documentation here.
Please refer to the DDS online documentation on how to create and add component into your project.
FAQs
Read the docs · Request feature
We found that @ddsys/material demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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 discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.