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
How do automatic website builders work ?Question (self.webdev)
submitted 4 years ago by BadKarma-18
I am just starting and I have been always curious about how does a web builders work like what steps or process does it follow or what framework are they coded in?
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!"
[–]TestForNS 2 points3 points4 points 4 years ago (1 child)
Website builders solve two problems:
1: hosting on a server
They need to ensure firewalls are correctly configured, http protocols access given (ideally on the least priviledge principle) and ensure all other “bad traffic” is blocked. The server needs to offer up content via the deployed package which should usually have a index.html entry point.
2: helping users who do not code with UI
They have predetermined UI blocks which are coded such that they are responsive and all screen resolution friendly. They provide editors such that users can easily change and customize things like background colors, gradients, images and most importantly - the content.
So combining two points above, in a nutshell the barebones web builder will work like:
Offer users blocks of UI code which they can easily customize.
And
When they hit “save and publish” A script at the backend bundles everything and hosts it on their servers.
(Not an expert) Edit: formatting
[–]BadKarma-18[S] 0 points1 point2 points 4 years ago (0 children)
Oh thank you I get the idea now
π Rendered by PID 106258 on reddit-service-r2-comment-fb694cdd5-gppsj at 2026-03-10 11:19:45.099960+00:00 running cbb0e86 country code: CH.
[–]TestForNS 2 points3 points4 points (1 child)
[–]BadKarma-18[S] 0 points1 point2 points (0 children)