asp.net core, I have tried a lot of frameworks and stacks from Laravel to Go and I have never been this productive on anything else.
Ask HN: What web framework do you use? Why did you choose it?
31–40 of 122 posts
Re: Ask HN: What web framework do you use? Why did you choose it?
#32* Fast development cycle
* Conventional
* Great community
* Good ecosystem of libs to take advantage of
* "Magic" (although Phoenix's magic is much different)
And some of it's own like
* Great concurrency (which feels like a free win over Rails)
* Functional programming
* How Ecto, the ORM works
* How simple it is, even with the "magic" included.
* How assets are handled, via a thin layer to Brunch, Webpack, or other JavaScript asset bundler
There's a few more, but I think those are a lot of the major talking points.
Re: Ask HN: What web framework do you use? Why did you choose it?
#33Re: Ask HN: What web framework do you use? Why did you choose it?
#34Yii is the 3rd framework from the same devs, so it's modern and unincumbered by cruft. Scaffolding is fast, API gen is automatic and extension ecosystem is strong.
Re: Ask HN: What web framework do you use? Why did you choose it?
#35Re: Ask HN: What web framework do you use? Why did you choose it?
#36[1]: https://www.playframework.com [2]: http://akka.io
Re: Ask HN: What web framework do you use? Why did you choose it?
#37Earlier quoted context omitted.
I've never developed using Django. How does it compare to Wordpress? Or under what situation is it preferable to Wordpress?
But you cant compare Wordpress with Django, Wordpress is not a web framework is just a CMS for blogs. Or am i wrong? PS... Django <3
Just wanted to make sure I know what I'm getting before I jumps in further into either Wordpress or Django :D
Re: Ask HN: What web framework do you use? Why did you choose it?
#38- ASP.NET MVC makes it much easier to keep your domain logic decoupled from the framework. This is in contrast to frameworks like Django who expect you to use their ORM, and to derive your model classes from a framework provided base class.
- It's C#. I know it well, it is common in industry, and it is statically typed. For programs of any real complexity, I find statically typed languages to be much more efficient and pleasant to work with.
Eventually I want to move more in the direction of stronger type systems, but it doesn't seem like there are many jobs out there for Haskell programmers who aren't programming demi-gods.
Re: Ask HN: What web framework do you use? Why did you choose it?
#39- For API based work, I love Flask (Python).
- For full fledged application, I am loving Laravel (PHP). With PHP7 and package managers such as composer and the awesome laracasts tutorials, it is just a breeze.
Re: Ask HN: What web framework do you use? Why did you choose it?
#40And right now I'm trying Laravel (PHP). It has a great documentation. I like the ORM and that it's easy to use. I want to build an API with it and consume it with a SPA and react.