Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-boxen
Advanced tools
A layout primitive for React.
Boxen utilizes glamor to provide cross-browser/cross-platform layout.
import Box from "react-boxen"
export default function MyComponent(props) {
return (
<Box
style={{backgroundColor: "whitesmoke"}}
padding="20px"
childSpacing="10px">
<Box grow="1">Box 1</Box>
<Box grow="1">Box 2</Box>
<Box grow="1">Box 3</Box>
</Box>
)
}
Property | Type | Value (default * ) | Description |
---|---|---|---|
align | String | auto * flex-start flex-end center stretch baseline | Override childAlign of parent <Box/> |
basis | String | Length | Individual flex-basis. Think of it as ideal length. |
childAlign | String | flex-start * flex-end center stretch baseline | Align children along the cross axis |
childBasis | String | Length | When childWrap='wrap' and non-percentage length, children will grow/shrink to roughly maintain this size. Think of it as ideal length. |
childDirection | String | column * column-reverse row row-reverse | Vertical or horizontal orientation of children |
childJustify | String | flex-start * flex-end center space-between space-around | Align children along the main axis |
childWrap | String | nowrap * wrap wrap-reverse | Define whether or not children can wrap |
childWrapLastGrow | String | nowrap * wrap wrap-reverse | Define whether or not children can wrap |
childWrapCount | Number | 20 * | Typical items show before wrapping. Useful for maintaining ChildBasis width when fewer than typical wrap count. |
childSpacing | String | Length | Spacing between children on any axis |
css | String | Template literal containing valid CSS | See styled-components documentation |
grow | Number | 0 * | Amount Box should grow to fill available space |
height | String | Length | ... |
padding | String | CSS length | ... |
shrink | Number | 1 * | Amount Box should shrink inside available space |
width | String | Length | ... |
...rest | Any | Any | Rest of props (aside from children ) are spread onto Box itself (e.g. onClick , onPress , etc.) |
Technically, there is nothing preventing usage with React Native. The web is a more immediate proving ground. As the API solidifies, testing and support will be hammered out for RN. PRs are always welcome!
FAQs
A layout primitive for React.
The npm package react-boxen receives a total of 2 weekly downloads. As such, react-boxen popularity was classified as not popular.
We found that react-boxen 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.