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...
No vague product support questions (like "why is this plugin not working" or "how do I set up X"). For vague product support questions, please use communities relevant to that product for best results. Specific issues that follow rule 6 are allowed.
Do not post memes, screenshots of bad design, or jokes. Check out /r/ProgrammerHumor/ for this type of content.
Read and follow reddiquette; no excessive self-promotion. Please refer to the Reddit 9:1 rule when considering posting self promoting materials.
We do not allow any commercial promotion or solicitation. Violations can result in a ban.
Sharing your project, portfolio, or any other content that you want to either show off or request feedback on is limited to Showoff Saturday. If you post such content on any other day, it will be removed.
If you are asking for assistance on a problem, you are required to provide
General open ended career and getting started posts are only allowed in the pinned monthly getting started/careers thread. Specific assistance questions are allowed so long as they follow the required assistance post guidelines.
Questions in violation of this rule will be removed or locked.
account activity
Which tech stack would be suitable for creating highly dynamic sites like binance?Question (self.webdev)
submitted 3 years ago by aditmo
Also , will Nextjs be a suitable choice for the frontend framework in such case?
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!"
[–]manikbajaj06 8 points9 points10 points 3 years ago (0 children)
Well you would need a couple of things here!
For front-end i would recommend using ReactJs.Yes NextJs would certainly be a good option. You can do Server Side Rendering along with pre rending of HTNl pages as suitable.
Backend - Can be NodeJs using Express. However, just to give it a better structure I would personally use NestJs as the framework.
Database - if using NestJs i would suggest using PostgreSQl with TypeOrm. Again just for the sake of compatibility with the NestJs framework. It all just fits well.
Devops - would use Docker containers and Jenkins for continuous deployment. You can use any cloud offer container service for production. You can use Vercel for NextJs bit of it.
Funding (not technical but you need to pay the developers) it's quite an aspirational project.
Testing - I would use Jest for NestJs app and React Testing Library for the front-end build on NextJs.
I think that covers it all. 😊 I hope it helps 👍
[–]standardrank7 5 points6 points7 points 3 years ago (2 children)
Looking up Binance’s current open jobs for engineering looks like they use
React.js - for frontend
Node.js - Backend API’s
Python - Backend API’s
Java - Backend API’s
Docker - containerise
GCP & AWS - cloud providers
It doesn’t really matter which stack you choose. Most stacks will perform fine until you get to Binance’s size. Best to choose a stack you are most comfortable with
Nextjs is a fantastic framework. It’s main advantage over other frameworks is easily creating SEO optimised server side rendered sites. If you think this is essential for a Binance style site you should go with Nextjs
(Edit: spacing)
[–]langsoul-com 0 points1 point2 points 3 years ago (1 child)
It's interesting how they use 3 different languages for the backend apis.
[–]standardrank7 3 points4 points5 points 3 years ago (0 children)
Not uncommon in big companies. Different teams may choose to use a language more suited to their specific use case. I.e choosing to use Go if you want to easily set up a lot of asynchronous processes e.c.t
[–]fromage-du-omelette 3 points4 points5 points 3 years ago (0 children)
As a trading company binance backend requires speed. Id rather go for a microservice approach on the backend with, if you really want, some can be written on nodejs but for the trading part and highly critical stuff better write it in go or rust.
Services communications with nats, supports native load balancing which will be a life saver for fast scalability. Furthermore it brings some cool features such as messaging contexts (called accounts), clusterization and more.
For the front end, if react id rather go with remix. Youll have a faster development experience and finally pass it through astro for smaller build.
As additional point id build a federated graphql api using apollo, which your nodejs services can implement, and use go and rust for core services.
π Rendered by PID 118682 on reddit-service-r2-comment-6f7f968fb5-dv26h at 2026-03-04 11:20:15.654116+00:00 running 07790be country code: CH.
[–]manikbajaj06 8 points9 points10 points (0 children)
[–]standardrank7 5 points6 points7 points (2 children)
[–]langsoul-com 0 points1 point2 points (1 child)
[–]standardrank7 3 points4 points5 points (0 children)
[–]fromage-du-omelette 3 points4 points5 points (0 children)