Live data from Hacker News

List of minimalist frameworks

github.com

31–40 of 95 posts

Re: List of minimalist frameworks

#31

I know this issue has been brought up many times before, but to some extent the existence of a framework suggests a lack of composability in the language being discussed. This gets discussed a lot in the context of Clojure, where people new to Clojure often ask, "Where are the frameworks?" The more meta-programming that a language allows, the more its functions will tend to be composable. The more composable it is, t…

Surprisingly PHP with Composer, coupled with type hinting and interfaces allows you to achieve what you're discussing. It's how I write web apps now -- small libraries, classes that expect interfaces, and unit testing. It's great - no frameworks!

Re: List of minimalist frameworks

#36

I know this issue has been brought up many times before, but to some extent the existence of a framework suggests a lack of composability in the language being discussed. This gets discussed a lot in the context of Clojure, where people new to Clojure often ask, "Where are the frameworks?" The more meta-programming that a language allows, the more its functions will tend to be composable. The more composable it is, t…

A fantastic example of this (in javascript) is trending right now on hackernews – myth.

https://news.ycombinator.com/item?id=6923141

Look at this implementation: it's just a composition of a bunch of other libraries. no logic at all. This is how it should be: https://github.com/segmentio/myth/blob/master/index.js#L37-L...

Re: List of minimalist frameworks

#40

Isn't "minimalist framework" a contradiction? It seems like if you were going for minimalism you would not use a framework.

It's intention refers more to an easy-to-use, low overhead and already-written solution, because people either don't understand or don't want to invest the time anymore.
Post reply on HN