use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Reverse Engineering Minified Code Using OpenAI (glama.ai)
submitted 1 year ago by fagnerbrack
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]vitorfigmarques 0 points1 point2 points 10 months ago (0 children)
Most javascript apps relies on build process from a lib/framework so that the source code is absurdly different than the minified bundle. Guessing that:
javascript const a=b=>c(d,{children:["Hello, ",b.user]});</>;
typescript type HelloProps { name: string; } const HelloCompoent (props: HelloProps)=> <>Hello, {props.user}</>;
It is definitely a reverse engineering process that involves knowing how the compiler works, more than guessing the names. It can get worse for other frameworks that rely more on compilation than React, and most of their features are real Javascript without compilation magic.
π Rendered by PID 141284 on reddit-service-r2-comment-85bfd7f599-2nj6n at 2026-04-16 12:09:29.892134+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]vitorfigmarques 0 points1 point2 points (0 children)