Games and challenges

Games and challenges are a good way to learn new skills and practice subjects you have already learned, without having to start a new project.

Go To Post

npx

Introduced in npm version 5.2, the npx binary allows you to run npm package binaries either from the local node_modules/.bin folder, or to run a one-off command without installing package globally. It is a very impressive tool that should replace most npm install global commands.

Go To Post

ECMAScript and JavaScript

JavaScript is an implementation of the language standard ECMAScript. The Ecma TC39 (Ecma Technical Committee 39) committee is responsible for evolving the ECMAScript programming language and authoring the specification. It is also responsible for the official ECMAScript Conformance Test Suite, that can be used to check how closely a JavaScript implementation follows the ECMAScript specification.

Go To Post