Ask HN: Which tech-stack requires the least knowledge and complexity? I am rebuilding the website for my hobby club (currently wordpress). I would like to add some new features for members, but I also want be mindful about future maintainers who may not be technical. The top 2 criteria are: 1) It has to be super simple for certain elderly non technical members to add items to an events calendar and upload a PDF of the monthly newsletter for members to download. The wordpress UI is too much to handle for them as it is. Something similar like Wix or SquareSpace would also be too much I think. I want to build a custom form that is dead simple. 2) If I leave the club in the future I want the next maintainer to have an easy job, so I dont want to use any cutting edge tech or proprietary cloud services or anything high maintenance. My initial idea is a mostly static html site with some vanilla JS that reads a json file to generate the dynamic calendar and newsletters pages. Then I would make a custom form (php perhaps) behind a "Basic Auth" password that would update said json file. This would avoid a database. Something like this could be hosted almost anywhere and future maintainers would only need to know js/php which are very similar in syntax, and also popular and dont require a gajillion dependencies. What other suggestions do people have for a tech stack that is super dumb and requires minimal knowledge to maintain. |