
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@react-corekit/use-where
Advanced tools
Detects if the javascript is being loaded from a server (SSR) or a web client
React Hook that detects if the javascript is being loaded from a server (SSR) or a web client
npm install --save @react-corekit/use-where
yarn add @react-corekit/use-where
const [isBrowser, isNode, isServer] = useWhere();
isBrowser
A function that detects if the code is being executed in a web browser.
isServer
A function that detects if the code is being executed in a server (SSR - Server side rendering).
isNode
A function that detects if the code is being executed in node environment (SSR - Server side rendering).
Visit: https://react-corekit.github.io/use-where/ for a minimalistic live demo
import React from "react";
import { useWhere } from "@react-corekit/use-where";
const App = () => {
const [isBrowser, isNode, isServer] = useWhere();
return (
<div>
<div>
Is browser? <strong>{isBrowser() ? "Yes" : "No"}</strong>
</div>
<div>
Is node? <strong>{isNode() ? "Yes" : "No"}</strong>
</div>
<div>
Is server? <strong>{isServer() ? "Yes" : "No"}</strong>
</div>
</div>
);
};
export default App;
React's ReactDomServer object Reference
MIT © glongh
FAQs
Detects if the javascript is being loaded from a server (SSR) or a web client
The npm package @react-corekit/use-where receives a total of 0 weekly downloads. As such, @react-corekit/use-where popularity was classified as not popular.
We found that @react-corekit/use-where 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.