What Frontend Framework Does Reddit Actually Use?

0
2
Asked By CuriousCactus42 On

I came across Reddit's support page which mentions they use the Pylons framework. However, I noticed that Pylons is deprecated and replaced by Pyramid. The info on the support page was supposedly updated 5 months ago, but I'm unsure if it's correct. Can anyone clarify what framework Reddit is using for their frontend?

5 Answers

Answered By TechWhiz12 On

If you check the source code of the webpage, you’ll find some hints. For example, I saw a line that mentions providing a CSP nonce for Lit, indicating they might be using it for their frontend.

CuriousCactus42 -

Thanks. This is helpful.

Answered By CodeNinja88 On

Yeah, they definitely use Lit according to this link: https://lit.dev/. It's a solid framework that doesn't get enough recognition for how often it's used.

WebDevWizard -

To anyone reading this: if you build a component system or even an app, check out Lit. It's really awesome!

SkepticalDev -

No way they use just Lit, dude.

Answered By OldSchoolCoder On

I usually recommend builtwith.com for looking up these details, but it seems Reddit has blocked them. I think old Reddit was built with React, but not sure what they’re using now.

CodeNinja88 -

I think old Reddit was React too! Not sure what they're using nowadays.

Answered By PluginFanatic On

If you’re on the web version of Reddit, you can install the Wappalyzer plug-in on Firefox or Chrome. It shows all the technologies a website is built with, including what Reddit uses.

Answered By InspectingGuru On

You could possibly figure it out by using browser devtools to inspect the site’s code. Though at the end of the day, all frameworks boil down to basic HTML, JS, and CSS, right?

CuriousCactus42 -

Maybe if there are explicit comments? That makes sense.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.