
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
kushy-design
Advanced tools
A human-centered design framework and UI system based on Semantic UI.
npm install kushy-design && semantic-ui-react --saveYou can find this package on NPM here
import 'kushy-design/semantic/dist/semantic.css'import 'kushy-design/semantic/dist/components/button.css'<Button />Use any SUI React components as needed. Make sure to import CSS (either compiled/master file or component-based CSS).
import React from 'react'
import { Table } from 'semantic-ui-react'
import 'kushy-design/semantic/dist/components/table.min.css'
export default ({ section }) => {
const headerItemsCollection = {
'topicals': [
'Name',
'List Price',
'Sales Price',
],
}
const headerItems = headerItemsCollection[section].map(headerItem => (
<Table.HeaderCell>{ headerItem }</Table.HeaderCell>
))
return (
<React.Fragment>
<Table.Row>
<Table.HeaderCell colSpan={ headerItems.length }>
{ section }
</Table.HeaderCell>
</Table.Row>
<Table.Row>
{ headerItems }
</Table.Row>
</React.Fragment>
)
}
git clone https://github.com/kushyapp/kushy-design.gitcd kushy-designnpm installnpm install gulp-cli -g && npm install gulp -DGulp is required by Semantic UI to build the CSS and JS files after modifying with new properties.
semantic/src/themes/kushy-v1)cd semantic && gulp buildAll the documentation for this design system is locally based. You can find all the raw documentation in Markdown format in the /docs/ folder. These files are imported into another project that handles the build process, since documentation theming can be fickle - and will be dramatically changed over time.
To publish to NPM, run these commands inside project:
npm loginnpm version <update_type>npm publishFAQs
The design system for Kushy.net
We found that kushy-design 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.