Echo JS 0.11.0

<~>

davidchase comments

davidchase 3184 days ago. link 1 point
its a nice write up, however you still don't necessarily have the composition flow like you do when using ramda. Plus the libraries such as ramda can always dispatch to native methods and provide convenience wrappers to create this compositions. Again you can do everything yourself by using the above methods and groupings but then why re-invent the wheel each time when you already have utility libraries there seems very little win/gain.
davidchase 3187 days ago. link 1 point
book looks interesting.. good to have more people trying to bring functional aspects of programming to javascript :)
davidchase 3233 days ago. link 1 point
I guess you haven't used hapi, express was nice for building simple solution but as this wrapper points out in the readme it's not great for complex situations without a lot more foundational work. When we moved to hapi we were able to make complex e-commerce system without any problems or mucking around so i was simply stating s switch to a more robust framework. Take the advice with a grain of salt :)
davidchase 3242 days ago. link -1 point
for a second i thought it wouldnt be another article about facebook, but since react still in there :(
davidchase 3254 days ago. link 1 point
how is writing templates have anything to do with being an expert(pro) in node? hmm ;)
davidchase 3255 days ago. link 1 point
its the NOT bitwise operator which simple takes -(n + 1) where n is the number to the right of the operator. then !! is a way of coercing to boolean so essentially the returned value is either true or false depending if letter exists in the array instead of returning the index or -1 if it doesnt exist.
[more]