Skip to content

Commit

Permalink
[Doc] Fixing some version numbers and URLs
Browse files Browse the repository at this point in the history
Change-Id: I77cb179b8cba37de9dfcf12c39e950bc8b3a87c5
  • Loading branch information
tbuschto committed Nov 10, 2022
1 parent 0a208ef commit b3bc7f0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Start the app and (optionally) log in with your GitHub account.
On your development machine, the following software needs to be installed:

- [Node.js](https://nodejs.org/) ([installation guide](https://docs.npmjs.com/getting-started/installing-node)). You need a version >= 6.0 (type `node -v` to check your node version).
- [Node.js](https://nodejs.org/) ([installation guide](https://docs.npmjs.com/getting-started/installing-node)). You need a version >= 16.0 (type `node -v` to check your node version).
- [Tabris CLI](https://www.npmjs.com/package/tabris-cli) (type `npm install -g tabris-cli`).
- A text editor or JavaScript IDE of your choice.

Expand Down
2 changes: 1 addition & 1 deletion doc/runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Feature|Example
[let](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let)|`let a = 1;`
[Map](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map)|`new Map(iterable)`
[Methods](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Method_definitions)|`{ a() { … } }`
[Object property shorthands](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#new_notations_in_ecmascript_2015)|`{a, b}`
[Object property shorthands](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Object_initializer#property_definitions)|`{a, b}`
[Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)|`new Promise(cb)`
[Reflect](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect)|`Reflect.setPrototypeOf(a, proto)`
[Rest parameters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters)|`function(...args) { … }`
Expand Down
2 changes: 1 addition & 1 deletion doc/typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---
# TypeScript

Tabris.js 3 targets TypeScript 3.8. TypeScript is a <em>type-safe</em> dialect of JavaScript/EcmaScript and also supports <em>ES6 module syntax</em> (`import` and `export` statements) and `async`/`await`. A complete guide to TypeScript can be found at [typescriptlang.org](http://www.typescriptlang.org/docs/home.html). As an IDE we can recommend [Visual Studio Code](https://code.visualstudio.com/) with the [eslint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) extension, but there are [many suitable TypeScript IDEs](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Editor-Support) out there.
Tabris.js 3 targets TypeScript 4.8. TypeScript is a <em>type-safe</em> dialect of JavaScript/EcmaScript and also supports <em>ES6 module syntax</em> (`import` and `export` statements) and `async`/`await`. A complete guide to TypeScript can be found at [typescriptlang.org](http://www.typescriptlang.org/docs/home.html). As an IDE we can recommend [Visual Studio Code](https://code.visualstudio.com/) with the [eslint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) extension, but there are [many suitable TypeScript IDEs](https://github.com/Microsoft/TypeScript/wiki/TypeScript-Editor-Support) out there.

## Setup

Expand Down
2 changes: 1 addition & 1 deletion doc/w3c-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ WebSockets are an advanced technology that makes it possible to open an interact

See also:
* [MDN API Documentation](https://developer.mozilla.org/en-US/docs/Web/API/WebSocket)
* [WHATWG Standard](https://html.spec.whatwg.org/multipage/web-sockets.html#the-websocket-interface)
* [WHATWG Standard](https://websockets.spec.whatwg.org/#the-websocket-interface)

## Worker

Expand Down

0 comments on commit b3bc7f0

Please sign in to comment.