Memory used HTML5

Javi400

New member
Joined
Jan 21, 2023
Messages
14
Hi!, I am developing a game in HTML5 and I need to know how much memory it occupies at any moment. Is there any command for this?. Thanks in advance
 

MikeHart

Administrator
CX Code Contributor
3rd Party Module Dev
3rd Party Target Dev
3rd Party Tool Dev
Joined
Jun 19, 2017
Messages
3,504
No nothing available inside mojo.
 

MikeHart

Administrator
CX Code Contributor
3rd Party Module Dev
3rd Party Target Dev
3rd Party Tool Dev
Joined
Jun 19, 2017
Messages
3,504
There is an API to determine how much memory a page uses BUT from what I read it might not give you the correct result.
 

SLotman

Active member
3rd Party Module Dev
Tutorial Author
Joined
Jul 3, 2017
Messages
239
On Firefox (don't know other browsers) you can just type in the URL bar: "about:performance" and it will show you how much memory processes are taking.

Here is my own samurai game, running in one tab and the other I can see its using 550KB ;)

This is not the total impact though - using webgl things go into the GPU too - but this should give you an idea :)

1677750292426.png
 

Wingnut

Well-known member
3rd Party Module Dev
Tutorial Author
Joined
Jan 2, 2020
Messages
1,284
ops my code took 19mb and increasing while using, i need to do something
 

SLotman

Active member
3rd Party Module Dev
Tutorial Author
Joined
Jul 3, 2017
Messages
239
19MB isn't anything to worry about, really. If you look at anything made with Unity for web... you're going to sit down and cry 😅
 

Wingnut

Well-known member
3rd Party Module Dev
Tutorial Author
Joined
Jan 2, 2020
Messages
1,284
it grows for eeeach time i press a key haha, 1mB per press ;) i did something terrible i still need to find the bug
 
Top Bottom