Skip to main content

JS Memory Leaks

Finding Memory Leaks

For memory leaks, see node-memwatch. Use the —inspect flag to make and compare heap snapshots.

Causes of Memory Leaks

Mobx (mobx-react)

import { useStaticRendering } from "mobx-react";

const App = (props, railsContext) => {
const { location, serverSide } = railsContext;
const context = {};

useStaticRendering(true);