Ask HN: Which web stack should I learn for personal projects?
11–20 of 51 posts
Re: Ask HN: Which web stack should I learn for personal projects?
#12Don't use Iris: http://www.florinpatan.ro/2016/10/why-you-should-not-use-iri...
Re: Ask HN: Which web stack should I learn for personal projects?
#13Some information you should probably be aware of when it comes to Iris: http://www.florinpatan.ro/2016/10/why-you-should-not-use-iri...
Re: Ask HN: Which web stack should I learn for personal projects?
#14Server-side : - Node.js is great if you like JS. It couples really well with MongoDB (see MEAN stack). - Play Framework is quite nice if you want to stick to Java. Client-side : - React is...well you tried it. - Vue.js is great.
Re: Ask HN: Which web stack should I learn for personal projects?
#15Welcome to the web :) I can recommend Yii (PHP MVC framework) which can help you get going quickly. It comes with a code generator and also takes care of things like JavaScript form validation and other front-end related things. Personally, I like to only use JavaScript frameworks/libraries if they are really required. If you need to do a lot of stuff dynamically on the front-end, you can also look into libraries lik…
Re: Ask HN: Which web stack should I learn for personal projects?
#16Ease of implementation? Just grab any modern Rails and pick a frontend framework later.
Any tips on keeping the codebase legible?
Re: Ask HN: Which web stack should I learn for personal projects?
#17So, if you already know javascript then I would look at node.js. Full disclaimer: I actually use golang for my personal projects because I'm attracted by its simplicity and how it really doesn't hide stuff from me using hand-wavy magic. Performance is also a factor, but not one I consider when comparing it to node. If I'm working on something I want to roll out fairly quickly. A prototype. Then I'll probably use node…
Re: Ask HN: Which web stack should I learn for personal projects?
#18So, if you already know javascript then I would look at node.js. Full disclaimer: I actually use golang for my personal projects because I'm attracted by its simplicity and how it really doesn't hide stuff from me using hand-wavy magic. Performance is also a factor, but not one I consider when comparing it to node. If I'm working on something I want to roll out fairly quickly. A prototype. Then I'll probably use node…
Re: Ask HN: Which web stack should I learn for personal projects?
#19Check out Flask[0], which is a microframework for Python. Pretty easy to start with plus you will be learning Python down the road. [0] http://flask.pocoo.org/
https://github.com/johnwheeler/flask-live-starter
It includes tasks to provision a full Debian box with Gunicorn and Postgres, deploy your app, provision a letsencrypt certificate, backup your database, and tail your remote logs.
Re: Ask HN: Which web stack should I learn for personal projects?
#20Personally, haven't found anything that has led me to be more productive than Rails + (Semantic UI or Bootstrap) + jQuery. Server side rendered templates with some light sprinkling of javascript covers 99% of my needs.