
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@chakra-ui/react-env
Advanced tools
Component and hook for handling window and document object in iframe or ssr environment
React component and hook for handling window and document object in iframe or ssr environment
This is an internal utility, not intended for public usage.
yarn add @chakra-ui/react-env
# or
npm i @chakra-ui/react-env
To get it working, you need to wrap your app in EnvironmentProvider and call
the useEnvironment hook anywhere in your app to get access to the correct
window and document.
import { EnvironmentProvider } from "@chakra-ui/react-env"
// in your App
const App = ({ children }) => {
return <EnvironmentProvider>{children}</EnvironmentProvider>
}
// read the environment
const WindowSize = () => {
const { window } = useEnvironment()
return (
<pre>
{JSON.stringify({
w: window.innerWidth,
h: window.innerHeight,
})}
</pre>
)
}
If you wrap specific aspects of your app within an iframe, you'll need to wrap
the content in the iframe in EnvironmentProvider to provide the correct
window and document to its content.
// in your app
const EmbeddedIFrame = () => {
return (
<Frame>
<EnvironmentProvider>
<WindowSize />
</EnvironmentProvider>
</Frame>
)
}
Yes please! See the contributing guidelines for details.
This project is licensed under the terms of the MIT license.
FAQs
Component and hook for handling window and document object in iframe or ssr environment
We found that @chakra-ui/react-env demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.