1062
Unbelievable (suppo.fi)
submitted 11 months ago by Albin7326@suppo.fi to c/programmerhumor@lemmy.ml
you are viewing a single comment's thread
view the rest of the comments
[-] erogenouswarzone@lemmy.ml 6 points 11 months ago

Can you give us an eli5 on sourcemaps?

[-] YourAvgMortal@lemmy.world 7 points 11 months ago

Usually when code is minified, it is shipped alongside a sourcemap (*.js.map), which can be used by the browser to show you the original code.

If you get an error in the browser, you can click the error, which will take you to the network(?) tab and show you exactly where the error occurred

[-] Anticorp@lemmy.ml 5 points 11 months ago

Also when code has been compiled, or transpiled. The reason the line numbers don't match is because all of the code is being assembled into one large package and served to whatever client uses it. So even if you don't minify, but you're compiling, sourcemaps will show you where the error actually occurs, instead of where it occurs in the finished product.

[-] Natanael@slrpnk.net 1 points 11 months ago

Especially if the compiler optimization options inlined code from 5 different places into one blob

this post was submitted on 14 Oct 2023
1062 points (97.0% liked)

Programmer Humor

32190 readers
546 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS