
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.
@voxgig/model-react
Advanced tools
Voxgig Model React is a library of model-driven React Enterprise UI components.
Voxgig Model React is a library of model-driven React Enterprise UI components.
npm install @voxgig/model-react
The best place to start would be to run (and experiment with) the example app in examples/basic-app.
git clone git@github.com:voxgig/model-react.git
cd model-react/examples/basic-app
Install it and run:
npm install
npm run dev
Model React components are built on top of Material UI, so it should be fairly easy to customize it with your theme.
Here's an example of how to change the color palette of your app:
First create your custom theme:
import { createTheme } from '@mui/material'
const customTheme = createTheme({
palette: {
mode: 'dark',
background: {
default: '#191c29',
paper: '#262937'
},
primary: {
main: red[500]
}
}
})
Pass your theme to the context variable, make sure to wrap your components in ThemeProvider:
const ctx = () => ({
...
theme: customTheme,
...
})
...
<ThemeProvider theme={ctx().theme}>
<div className='Private'>
<BasicAdmin ctx={ctx} spec={spec} />
</div>
</ThemeProvider>
You can see a full example of this in examples/basic-app/src/private/Private.tsx
git clone git@github.com:voxgig/model-react.git
cd model-react
npm run watch
npm run formatnpm run lintFAQs
Voxgig Model React is a library of model-driven React Enterprise UI components.
We found that @voxgig/model-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.