JavaScript Development Pages

JavaScript is a scripting language for computers. It is often run in web browser applications to create dynamic content.

Alongside HTML and CSS, it is one of the three core technologies of the World Wide Web and nearly all websites.

JavaScript was mostly used from within a web browser but with the release of Node.js it can now be used for desktop applications, command line tools and to power server side applications & websites.

JavaScript was originally developed in 10 days in May 1995 by Brendan Eich, while he was working for Netscape Communications Corporation.

It has been standardised in the ECMAScript language specification (Standard ECMA-262).

The current spec is the 14th Edition - 14th Edition (June 2023), known as ECMAScript 2023.

The ECMAScript website can be found at http://www.ecmascript.org/

Also Wikipedia have a good overview of the specs history at https://en.wikipedia.org/wiki/ECMAScript.

Node.js

Node.js® is a JavaScript-based environment built on Chrome's JavaScript runtime (V8) for easily building fast, scalable network applications with Javascript for both the server and the client.

Check out our Nodejs Page for more.

Transpilers

JavaScript is changing with ES6 (ECMAScript 2015), ES7 (ECMAScript 2016) & ES8 (ECMAScript 2017) but we don't have to wait years for the major browser manufacturers to catch up because we have transpilers today.

Transpilers allow us to write ES7 or above today but ship ES6 or ES5 Code that the browser can understand, this means we get all the new tooling support and features to speed up design and coding time.

But as browsers start to support more of ES7 you only need to change a config flag, then build & test to start shipping the new ES7 to the browsers.

The two main JavaScript transpilers in use today are:

TypeScript

TypeScript is a free and open source programming language developed and maintained by Microsoft. It is a strict superset of JavaScript, and adds optional static typing and class-based object-oriented programming to the language.

Anders Hejlsberg, lead architect of C# and creator of Delphi and Turbo Pascal, has also worked on the development of TypeScript.

TypeScript may be used to develop JavaScript applications for client-side or server-side (Node.js) execution.

TypeScript can be installed from the command line using NPM or used with an IDE say like WebStorm or Visual Studio but Visual Studio Code also has great support for TypeScript.

Check out our TypeScript Page & Visual Studio Code Page for more.

Babel

Babel has support for the latest version of JavaScript but does not offer the extra design time tooling features found in TypeScript.

The Babeljs website has some great docs to learn ES2015 (ES6) and to get Set up & running with Babel in various tools and editors.

Check out our Babel Page & Gulp Page for more.

This page was last updated on .