Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

use-ssr

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

use-ssr

☯️ React hook to determine if you're on the server or browser

  • 1.0.12
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
48K
decreased by-4.29%
Maintainers
1
Weekly downloads
 
Created
Source

useSSR

☯️ React hook to determine if you're on the server or browser

Need to know when you're on the server or in the browser in your components? This simple hook makes it easy. 🔥

Features

  • SSR (server side rendering) support
  • typescript support
  • zero dependencies

Examples

  • Code Sandbox Example with NextJS

Installation

yarn add use-ssr      or     npm i -S use-ssr

Usage


const App = () => {
  const { isBrowser } = useSSR()

  // check your server logs, this should show "false" there
  console.log('IS BROWSER: ', isBrowser)

  // you should always see 👍 in your browser
  return (
    <>
      Is in browser? {isBrowser ? '👍' : '👎'}
    </>
  )
}

Keywords

FAQs

Package last updated on 22 May 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc