Next.js is a React framework with pre-rendering abilities. This means that for every page, Next.js will try to generate the HTML of the page for better SEO and performance.
This is why, if you're trying to do this:
// components/Scroll.js
window.addEventListener("scroll", function() {
console.log("scroll!")
});
Then it will fail with "ReferenceError: window is not defined":
Because in the Node.js world, window is not defined, window is only available in browsers.
There are three ways to solve that:
1. First solution: typeof
While you can't use:
if (window !== undefined) {
// browser code
}
Because this would try to compare a non-existent variable (window) to undefined, resulting in the mighty "ReferenceError: window is not defined". You can still use:
if (typeof window !== "undefined") {
// browser code
}
Because typeof won't try to evaluate "window", it will only try to get its type, in our case in Node.js: "undefined".
PS: Thanks to
Rogier Nitschelm for reminding me about this. I initially tried to do if (typeof window !== undefined)
and this failed hard because of the reasons mentioned earlier.
The other solutions below are more exotic but still worth it.
2. Second solution: the useEffect hook
The "React" way to solve this issue would be to use the useEffect React hook. Which only runs at the rendering phase, so it won't run on the server.
Let's update our scroll.js component:
// components/Scroll.js
import React, { useEffect } from "react";
export default function Scroll() {
useEffect(function mount() {
function onScroll() {
console.log("scroll!");
}
window.addEventListener("scroll", onScroll);
return function unMount() {
window.removeEventListener("scroll", onScroll);
};
});
return null;
}
What we've done here is to turn our initial JavaScript file into a true React component that then needs to be added to your React tree via:
// pages/index.js
import Scroll from "../components/Scroll";
export default function Home() {
return (
<div style={{ minHeight: "1000px" }}>
<h1>Home</h1>
<Scroll />
</div>
);
}
Tip: The way we use useEffect in the example is to register and unregister the listeners on mount/unmount. But you could also just register on mount and ignore any other rendering event, to do so you would do this:
// components/Scroll.js
import React, { useEffect } from "react";
export default function Scroll() {
useEffect(function onFirstMount() {
function onScroll() {
console.log("scroll!");
}
window.addEventListener("scroll", onScroll);
}, []); // empty dependencies array means "run this once on first mount"
return null;
}
3. Third solution: dynamic loading
A different solution is to load your Scroll component using dynamic imports and the srr: false
option. This way your component won't even be rendered on the server-side at all.
This solution works particularly well when you're importing external modules depending on window
. (Thanks Justin!)
// components/Scroll.js
function onScroll() {
console.log("scroll!");
}
window.addEventListener("scroll", onScroll);
export default function Scroll() {
return null;
}
// pages/index.js
import dynamic from "next/dynamic";
const Scroll = dynamic(
() => {
return import("../components/Scroll");
},
{ ssr: false }
);
export default function Home() {
return (
<div style={{ minHeight: "1000px" }}>
<h1>Home</h1>
<Scroll />
</div>
);
}
If you do not need the features of useEffect, you can even remove its usage completely as shown here.
Finally, you could also load your Scroll
component only in _app.js if what you're trying to achieve is to globally load a component and forget about it (no more mount/unmount on page change).
I have used this technique to display a top level progress bar with NProgress in this article:
Oldest comments (34)
Niceee!
If you don't want to have a lot of boilerplate code, you could simple write:
and use this variable as a conditional.
Also if you use the first option, please remember to unsubscribe your eventListener in the useEffect or you gonna have a bad time 😭 .
Hey there Rowin, you might have a different setup but
const isBrowser = window
won't work at least in Next.js pre-rendering. You'll get the same error (just tried it again). I think anytime such code would go through Node.js it would fail, as shown in a REPL:As for unsubscribing the listener, this is already done in the code samples from the article so maybe you missed that or there's some other place I forgot to do it?
Thanks
Perhaps like this?
Yes that would work indeed! Thanks :)
Just added a new solution and thank you note :)
In a tread related to this problem in Next.JS official GitHub issue page mentioned that it is wrong to do so and you need to explicitly check
typeof window !== "undefined"
wherever you need it:NextJS GitHub issues page
Consider reading my solution as well. it's inspirred by this post. So thank you Vincent for idea.
NextJS - Access window and localStorage
I found this only works (2024) when adding
window
to the dependency array.none of these solutions work well if the problem is in a library you are using
Definitely right. When that's the case I am not sure if there's even a solution. Do you know one? If the library tries to read directly from the window object, then it just isn't compatible with Node.js (even if it could I guess).
Maybe you can do something like global.window = {} and provide the necessary code? Let us know!
My solution was to import the component that used the library that used
window
using the dynamic importerThanks, if I am not mistaken, that's the third solution of this current blog post: dev.to/vvo/how-to-solve-window-is-...
I feel silly now.
Lol!!
Hey Justin, don't, because I am updating the article right now to add that this particular solution works well for libraries you're importing :) Thanks for the tip!
how to load variable?
example:
var myVar = "bla"
When I use dynamic loading, it returns ReferenceError: window is not defined
Nice work
I was struggling a little with adding a function that is not a default export to run with SSR false, maybe this could be helpful for someone:
import dynamic from 'next/dynamic'
const DynamicComponent = dynamic(() =>
import('../components/hello').then((mod) => mod.Hello)
)
Good article!
Hi How can I solve this in react js with out next?
The blog post has Next.js in it but really all techniques (but the dynamic loading one) will work everywhere, so try them and let us know
What if I want to find geolocation using navigator object in getStaticProps and make api request on that basis and use the response to fill data in pre rendering. Need to do this for SEO
Love it, thanks! I didn't know about the Next.js dynamic importer, but that's great for cases like this. 💯
thank you, but I only want show model when scroll. It seems re-render so many.
so helpful👏