Tag: Javascript
-
Brutal lifecycle of JavaScript UI frameworks
Posted on January 12, 2018, Level beginner Resource Length long
Ian Allen -- a developer on the Internal Tools team at Stack Overflow -- wrote this piece on JavaScript UI frameworks and libraries and how work in cycles. Every six months or so, a new one pops up, claiming that it has revolutionized UI development. This articles draws some interesting conclusions. You may or may not agree with it.
Tags javascript nodejs programming
-
3 features of ES7 to use right now
Posted on January 9, 2018, Level beginner Resource Length long
Derick Bailey wrote a blog post about some interesting features in JavaScript ES7 which you can use right now. It seems everything is changing in JavaScript – even the naming of releases has changed, with years marking the language version.
Tags nodejs javascript
-
Introduction to WebAssembly - why should we care?
Posted on December 26, 2017, Level beginner Resource Length medium
Gabriele Tomassetti article about WebAssembly, or wasm, which is a low-level bytecode format for in-browser client-side scripting. In practical terms, WebAssembly is implemented by browsers' developers on the back of the existing JavaScript engine.
Tags programming javascript nodejs
-
What is WebAssembly?
Posted on December 23, 2017, Level beginner Resource Length long
Eric Elliott article about WebAssembly. WebAssembly gives us access to a set of low level building blocks that we can use to construct just about anything you can imagine.
Tags programming javascript nodejs
-
TypeScript 2.4 weak type detection
Posted on December 10, 2017, Level intermediate Resource Length short
Marius Schulz short into into TypesScript weak type detection with code examples. A type is considered weak if all of its properties are optional. More specifically, a weak type defines one or more optional properties, no required properties, and no index signatures.
Tags nodejs javascript
-
Advice for new JavaScript programmer
Posted on December 6, 2017, Level beginner Resource Length long
Christian Heilmann blog post full of advice to new programmers who just learned JavaScript. JavaScript has evolved from being a "toy language", "real programmers" laughed at into the language that powers the web and beyond.
Tags programming javascript
-
Getting started with Webpack - dev server
Posted on October 29, 2017, Level beginner Resource Length medium
Abraham Williams sweet post about moving fast when developing. Developers want to move fast 🚀 🚀 🚀. Manually triggering a rebuild of your source code after ever little change is slow and annoying.
Tags javascript programming nodejs
-
Tricky JavaScript interview question asked by top tech companies
Posted on October 28, 2017, Level beginner Resource Length short
Daniel Borowski take on a tricky Javascript question often asked by top tech companies like Google or Amazon. It is a short explanation, along with some solutions, of a popular JavaScript question that tends to get asked in developer interviews.
Tags javascript nodejs programming
-
Advanced Vue.js concepts - mixins, fillters etc
Posted on October 28, 2017, Level intermediate Resource Length long
Ogundipe Samuel detailed blog post about advanced techniques using Vue. Vue.js is arguably one of the easiest and most minimalist JavaScript frameworks with which to get started, but very few tutorials exist that cover advanced concepts in Vue. And that's why author wrote this tutorial.
Tags javascript programming nodejs
-
ReactJS testing migrating from Tape to Jest
Posted on October 26, 2017, Level beginner Resource Length long
Thomas Greco is the author of the post sharing his feedback about recently using Jest while contributing to the next-static project after coming across it on Next.js' repository. He shares a ton of experience writing unit tests and explores the topic a little bit.
Tags tdd nodejs javascript
-
Getting Started with Moon.js
Posted on October 3, 2017, Level intermediate Resource Length long
Alan Morel extensive tutorial in which, he will be creating a simple single-page application with basic routing using the new and young Moon.js library.
Tags javascript nodejs
-
ES6 Promises: Patterns and Anti-Patterns
Posted on October 2, 2017, Level intermediate Resource Length long
Bobby Brennan post about hot topic - Promises in ECMAScript 6 and specifically he writtes about Patterns and Anti-Patterns.
Tags javascript nodejs