Step-by-step tutorial to build a modern JavaScript stack from scratch
1–10 of 211 posts
Re: Step-by-step tutorial to build a modern JavaScript stack from scratch
#2EDIT: just to be clear, I think that the tutorial itself is valuable and I appreciate it. I just wanted to post the link to CRA before somebody will come here complaining about "JS fatigue". I use most of the tools that tutorial describes and will use it to learn more about wiring testing-related tools. So yeah - thanks for posting the link and for the author(s) for taking the time to create such resource.
Re: Step-by-step tutorial to build a modern JavaScript stack from scratch
#3Re: Step-by-step tutorial to build a modern JavaScript stack from scratch
#4I appreciate the effort, certainly do. But, and this a big but: the amount of tooling, libraries, complexity and systems needed for a "modern" web app is almost comical at this point.
Re: Step-by-step tutorial to build a modern JavaScript stack from scratch
#5I appreciate the effort, certainly do. But, and this a big but: the amount of tooling, libraries, complexity and systems needed for a "modern" web app is almost comical at this point.
Re: Step-by-step tutorial to build a modern JavaScript stack from scratch
#6Also I'd give up Mocha, Chai & Sinon for tape, which is way simpler and more than enough:
https://medium.com/javascript-scene/why-i-use-tape-instead-o...
Re: Step-by-step tutorial to build a modern JavaScript stack from scratch
#7TypeScript, React, Redux, Webpack, Immutable, Ava
- TypeScript covers much of the benefit of es6/babel/eslint/flow, Ava covers chai/mocha, and webpack can cover most of what gulp provides
Re: Step-by-step tutorial to build a modern JavaScript stack from scratch
#8I appreciate the effort, certainly do. But, and this a big but: the amount of tooling, libraries, complexity and systems needed for a "modern" web app is almost comical at this point.
Re: Step-by-step tutorial to build a modern JavaScript stack from scratch
#9I would give up Immutable because of it's bad performance and often confusing api. Also I'd give up Mocha, Chai & Sinon for tape, which is way simpler and more than enough: https://medium.com/javascript-scene/why-i-use-tape-instead-o...
Re: Step-by-step tutorial to build a modern JavaScript stack from scratch
#10I appreciate the effort, certainly do. But, and this a big but: the amount of tooling, libraries, complexity and systems needed for a "modern" web app is almost comical at this point.
Angular (1.x) might not be "cool" anymore, but it can be pretty darn "minimal" to set up: https://github.com/roboprog/ang-prog-enh
(above not quite done, it's for a presentation I'm going to do in December, but it's pretty close)
React works better for many things - server side rendering for SEO; endless scrawling wall of chunks of more-of-the-same (social media...) - but it's not "simple".