Ask HN: What are your favorite web front-end ressources?
1–10 of 14 posts
Re: Ask HN: What are your favorite web front-end ressources?
#2A spell checker!
ducks
runs
Re: Ask HN: What are your favorite web front-end ressources?
#3Re: Ask HN: What are your favorite web front-end ressources?
#4> favorite web front-end ressources? A spell checker! ducks runs
Re: Ask HN: What are your favorite web front-end ressources?
#5> favorite web front-end ressources? A spell checker! ducks runs
Re: Ask HN: What are your favorite web front-end ressources?
#6https://developer.mozilla.org/en-US/ and https://docs.microsoft.com/en-us/scripting/javascript/refere... are up-to-date. Don't go to the old w3w-schools.org regardless how good their SEO ranking on Google is.
For packaging the industry is slowly moving from grunt and gulp to webpack. https://webpack.js.org/ And react/angularjs as frameworks of course.
http://javascriptweekly.com/ has decent newsletters (bottom of the page). There's little overlap between the Javascript and nodejs one.
Re: Ask HN: What are your favorite web front-end ressources?
#7I use http://devdocs.io/ and the old http://jqapi.com/ instead of books. https://developer.mozilla.org/en-US/ and https://docs.microsoft.com/en-us/scripting/javascript/refere... are up-to-date. Don't go to the old w3w-schools.org regardless how good their SEO ranking on Google is. For packaging the industry is slowly moving from grunt and gulp to webpack. https://webpack.js.org/ And react/angularjs as frameworks of c…
hey, Webpack looks great! I'll definitly look at it, thanks!
Re: Ask HN: What are your favorite web front-end ressources?
#8Its actually about React Native, but I still would like to link it :)
Re: Ask HN: What are your favorite web front-end ressources?
#9I use http://devdocs.io/ and the old http://jqapi.com/ instead of books. https://developer.mozilla.org/en-US/ and https://docs.microsoft.com/en-us/scripting/javascript/refere... are up-to-date. Don't go to the old w3w-schools.org regardless how good their SEO ranking on Google is. For packaging the industry is slowly moving from grunt and gulp to webpack. https://webpack.js.org/ And react/angularjs as frameworks of c…
Re: Ask HN: What are your favorite web front-end ressources?
#10The hardest thing about going from backend dev to frontend dev is understanding CSS and HTML layout. Without a clear mental model, the experience of trying to position things on a web page feels like really frustrating[1]. I cannot recommend more highly that you do the following:
- Read through http://book.mixu.net/css/ and take notes like you are in university. When you come to a point that seems ambiguous, copy-paste some of the example html/css into a file, modify it, and view it in the browser to check your understanding.
- Turn these notes into flashcards in a Spaced Repetition program like https://ankiweb.net/about. Try to write questions that ask why something turns out some way. Don't be surprised if many of the questions end up feeling like rote memorization. There is a reason why med students do a lot of rote memorization: they are trying to build a mental model of a very complex system.
After that if you have time and don't already have a project to work on, you might want to
- Build a bunch of things in just HTML/CSS. When you have a question about how to position something, try to predict what the answer is. If you can't, then look up resources and add another notecard to represent what you learned.