As the chapter name suggests, we are going to build a fun application in this chapter--a Meme Creator. Everyone loves memes! But that's not the only reason we are building a Meme Creator. We are going to explore a few new things that are going to change the way you build web applications. Let's see what's in store:
- Introduction to CSS3 flexbox. A new way to create responsive layouts on the web.
- Using the Webpack module bundler to convert all your dependencies and code to static assets.
- Using HTML5 canvas for drawing graphics on the fly with JavaScript.
- Creating a solid production build that is fully optimized, minified, and versioned.
Previously, you successfully built a ToDo List app while learning the new ES6 features of JavaScript. At the end of the chapter, you learned how to use Node and npm for web development. We have covered only...