
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.
HighWall is a React component which fits viewport's height. Mobile browser compatible 100vh.
Since version 0.4.0, this is an ES module (bundled with Rollup), which should work fine with Vite and others.
CSS height: 100vh is useful when trying to implement native-app-like mobile web application.
However, on mobile Safari for example, it does not work as expected.
This "HighWall" is a React component which realizes height: 100vh by measuring viewport's height
every window size change.
Since this component uses hook internally, React version has to be greater than 16.8.0.
Green will fill up the viewport.
Of course, you can set your own class like <HighWall className="myClass">.
import {HighWall} from 'HighWall';
const Page: React.FC = () => {
return (
<HighWall style={{backgroundColor: 'green'}}>
<div>Child component</div>
</HighWall>
);
};
These settings will show debug information on head-up display.
<HighWall debug={true}> // show in default position, leftBottom.
<HighWall debug={{ position: HudPosition.rightTop }}>

Maybe sometimes you want to set viewport's height to min-height or other properties.
This can be realized by setting Fitter function in props.
This sample will set the height to min-height instead of height.
import {HighWall, Fitter} from 'HighWall';
const fitter: Fitter = viewportHeight => ({minHeight: viewportHeight});
<HighWall fitter={fitter}>
</HighWall>
This component is inspired by great repos and articles, especially:
FAQs
HighWall is a React component which fits viewport's height. Mobile browser compatible 100vh.
We found that highwall 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.