Modern JavaScript
โ Scribed by coll.
- Publisher
- SitePoint
- Year
- 2017
- Tongue
- English
- Leaves
- 195
- Edition
- 1
- Category
- Library
No coin nor oath required. For personal study only.
โฆ Synopsis
It's not uncommon these days to see people complaining about just how complex JavaScript development seems to have become. We can have some sympathy with that view when it's coming from someone new to the language. If you're learning JS, it won't take long for you to be exposed to the enormity of the ecosystem and the sheer number of moving pieces you need to understand (at least conceptually) to build a modern web application. Package management, linting, transpilation, module bundling, minification, source maps, frameworks, unit testing, hot reloading... it can't be denied that this is a lot more complex that just including a couple of script tags in your page and FTPing it up to the server.
Included topics:
- The Anatomy of a Modern JavaScript Application by James Kolce
- An Introduction to Gulp.js by Craig Buckler
- The Basics of DOM Manipulation in Vanilla JavaScript (No jQuery) by Sebastian Seitz
- A Beginner's Guide to Webpack 2 and Module Bundling by Mark Brown
- React vs Angular: An In-depth Comparison by Pavels Jelisejevs
- Retrofit Your Website as a Progressive Web App by Craig Buckler
- 10 Tips to Become a Better Node Developer by Azat Mardan
- An Introduction to Functional JavaScript by M. David Green
- An Introduction to Chart.js 2.0 : Six Simple Examples by Jack Rometty
- Learning JavaScript Test-Driven Development by Example by James Wright
This book is for intermediate level JavaScript developers. Some experience of JavaScript development is assumed.
โฆ Subjects
programming languages
๐ SIMILAR VOLUMES
It's time for a current, definitive JavaScript book, and in this comprehensive beginner's guide, bestselling author Larry Ullman teaches the language as it is implemented today. Larry demonstrates how to build upon JavaScript's ease of use, while demystifying its often-cryptic syntax, especially for
<p>JavaScript today must interact with data-intensive APIs and networks. The solution is a program that can work <i>asynchronously</i> instead of finishing tasks in order. In modern JavaScript, instead of callbacks you'll use promises to improve your application's performance and responsiveness. Jav
"This book explains: how JavaScript and its standards development process have evolved -- Essential ES6 changes, including arrow functions, destructuring, let, and const; class syntax for declaring object prototypes, and the Symbol primitive -- How to handle flow control with Promises, iterators, ge
Intro; Copyright; Table of Contents; Preface; Section 1. Who Should Read This Book; Section 2. Why Modular JavaScript?; Section 3. How Is This Book Organized?; Section 4. Conventions Used in This Book; Section 5. O'Reilly Safari; Section 6. How to Contact Us; Section 7. Acknowledgments; Chapter 1. M