
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-stack
Advanced tools
#React Stack
Simple and intuitive based layout.
###Install
npm install --save react-stack
Don't forget to manually install React^0.14 (peer dependency) if you're using npm@3. ###Use #####ES6
import React from 'react';
import ReactDOM from 'react-dom';
import { VerticalStack, HorizontalStack } from 'react-stack';
// or for brevity import { Vertical, Horizontal } from 'react-stack';
ReactDOM.render(
<Horizontal>
<div>1</div>
<div>2</div>
<Vertical alignItems={'center'}>
<div>3</div>
<Horizontal grow={1}>
<div align={'end'}>4</div>
<div align={'center'}>5</div>
<div align={'end'} basis={30}>6</div>
</Horizontal>
</Vertical>
</Horizontal>,
document.getElementById('app')
);
#####ES5
var ReactStack = require('react-stack');
var Vertical = ReactStack.Vertical;
var Horizontal = ReactStack.Horizontal;
...
#####Good old 1998 Script Tag: The component depends on React ^0.14 (a introduction of stateless components), so if you're using it without a build step, React ^0.14 must be present as a global.
<script src="https://npmcdn.com/react@^0.14/dist/react.min.js"></script>
<script src="https://npmcdn.com/react-dom@^0.14/dist/react-dom.min.js"></script>
<script src="https://npmcdn.com/react-stack"></script>
###API
*Stack's and *Wrap's expose standard flex properties:
justifyContent: start (default), end, center, space-between, space-aroundalignItems: start, end, center, baseline, stretch (default)alignContent: start, end, center, space-between, space-around, stretch (default)Lower lever Stack and Wrap add:
orientation: horizontal (default), verticalEven lower Flex add:
wrap: true, false (default)For children components:
grow: Number (default: 0)shrink: Number (default: 1)basis: Number, auto (default)align: start, end, center, baseline, stretch, auto (default)Also check tests. ###Demo Navigate to the 'demo' folder and execute
npm install
npm run build
npm start
###Codepen example http://codepen.io/aush/pen/obQvjo
FAQs
Simple and intuitive flex-based layout
The npm package react-stack receives a total of 7 weekly downloads. As such, react-stack popularity was classified as not popular.
We found that react-stack 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.