
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@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
The npm package @chakra-ui/react-env receives a total of 262,062 weekly downloads. As such, @chakra-ui/react-env popularity was classified as popular.
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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.