6

Possible Duplicate:
Javascript memory profiler

I like to know what variables take how much memory in Javascript. Is it even possible to do it?

3
  • 2
    Are you asking about in-browser js or server-side like node.js? Commented Feb 20, 2011 at 1:04
  • @samshull // yes in-borwser javascript Commented Feb 20, 2011 at 1:09
  • @Chris Lively: Hard to tell if it is a duplicate. Especially as your linked one asks for IE specifically. Commented Feb 20, 2011 at 1:14

2 Answers 2

3

What you are looking for isn't called "memory monitor". It's called "profiler".

Javascript memory profiler for Firefox e.g. has info for Javascript profilers for running Javascript in Firefox. Google has lots of profilers for Javascript in various environments: Just search for "profiler javascript"

Sign up to request clarification or add additional context in comments.

Comments

2

The webkit inspector in Chrome has a profiler built in that is great for that kind of thing.

As an added bonus it also shows you all browser events such as repaints, so you can engineer your code to have the least impact on the browser.

See this question and answer

1 Comment

Than you for your input. It is such a great feature

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.