-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
content(learn): update resources about typescript #6951
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
c53ed00
content(learn): update ressources about typescript
AugustinMauroy dfe4e40
adding important note
AugustinMauroy 215a5c7
content(learn): update from feedback
AugustinMauroy 96bd205
content(learn): remove global install of tsc
AugustinMauroy 3a90cdb
fix fails from github copilot
AugustinMauroy 9e74f30
fix: remove old stuff from navigation
AugustinMauroy b6bcd40
update
AugustinMauroy 461bbd5
update
AugustinMauroy 43f5c59
Update from feedback
AugustinMauroy 725e8a1
Merge branch 'main' into content(learn)-typescript
AugustinMauroy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
185 changes: 0 additions & 185 deletions
185
apps/site/pages/en/learn/getting-started/nodejs-with-typescript.md
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
title: Introduction to TypeScript | ||
layout: learn | ||
authors: sbielenica, ovflowd, vaishnav-mk, AugustinMauroy | ||
--- | ||
|
||
# Introduction to TypeScript | ||
|
||
## What is TypeScript | ||
|
||
**[TypeScript](https://www.typescriptlang.org)** is an open-source language maintained and developed by Microsoft. | ||
|
||
Basically, TypeScript adds additional syntax to JavaScript to support a tighter integration with your editor. Catch errors early in your editor or in your CI/CD pipeline, and write more maintainable code. | ||
|
||
We can talk about other TypeScript benefits later, let's see some examples now! | ||
|
||
## First TypeScript code | ||
|
||
Take a look at this code snippet and then we can unpack it together: | ||
|
||
<!-- | ||
Maintainers note: this code is duplicated in the next article, please keep them in sync | ||
--> | ||
|
||
```ts | ||
type User = { | ||
name: string; | ||
age: number; | ||
}; | ||
|
||
function isAdult(user: User): boolean { | ||
return user.age >= 18; | ||
} | ||
|
||
const justine = { | ||
name: 'Justine', | ||
age: 23, | ||
} satisfies User; | ||
|
||
const isJustineAnAdult = isAdult(justine); | ||
``` | ||
|
||
The first part (with the `type` keyword) is responsible for declaring our custom object type representing users. Later we utilize this newly created type to create function `isAdult` that accepts one argument of type `User` and returns `boolean`. After this, we create `justine`, our example data that can be used for calling the previously defined function. Finally, we create a new variable with information on whether `justine` is an adult. | ||
|
||
There are additional things about this example that you should know. Firstly, if we do not comply with the declared types, TypeScript will inform us that something is wrong and prevent misuse. Secondly, not everything must be typed explicitly—TypeScript infers types for us. For example, the variable `isJustineAnAdult` is of type `boolean` even if we didn't type it explicitly, and `justine` would be a valid argument for our function even though we didn't declare this variable as of `User` type. | ||
|
||
## How to run TypeScript code | ||
|
||
Okay, so we have some TypeScript code. Now how do we run it? | ||
There are few possible ways to run TypeScript code, we will cover all of them in the next articles. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
title: Running TypeScript Natively | ||
layout: learn | ||
authors: AugustinMauroy | ||
--- | ||
|
||
> **⚠️WARNING⚠️:** All content in this article uses Node.js experimental features. Please make sure you are using a version of Node.js that supports the features mentioned in this article. And remember that experimental features can change in future versions of Node.js. | ||
|
||
# Running TypeScript Natively | ||
|
||
In the previous articles, we learned how to run TypeScript code using transpilation and with a runner. In this article, we will learn how to run TypeScript code using Node.js itself. | ||
|
||
## Running TypeScript code with Node.js | ||
|
||
Since V22.6.0, Node.js has experimental support for some TypeScript syntax. You can write code that's valid TypeScript directly in Node.js without the need to transpile it first. | ||
|
||
So how do you run TypeScript code with Node.js? | ||
|
||
```bash | ||
node --experimental-strip-types example.ts | ||
``` | ||
|
||
The `--experimental-strip-types` flag tells Node.js to strip the type annotations from the TypeScript code before running it. | ||
|
||
And that's it! You can now run TypeScript code directly in Node.js without the need to transpile it first, and use TypeScript to catch type-related errors. | ||
Future versions of Node.js will include support for TypeScript without the need for a command line flag. | ||
|
||
## Limitations | ||
|
||
At the time of writing, the experimental support for TypeScript in Node.js has some limitations. To allow TypeScript to run in node.js, our collaborators have chosen to only strip types from the code. | ||
|
||
You can get more information on the [API docs](https://nodejs.org/docs/latest/api/typescript.html#unsupported-typescript-features) | ||
|
||
## Important notes | ||
|
||
Thanks to all the contributors who have made this feature possible. We hope that this feature will be stable and available in the LTS version of Node.js soon. | ||
AugustinMauroy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
We can understand that this feature is experimental and has some limitations; if that doesn't suit your use-case, please use something else, or contribute a fix. Bug reports are also welcome, please keep in mind the project is run by volunteers, without warranty of any kind, so please be patient if you can't contribute the fix yourself. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
title: Running TypeScript with a runner | ||
layout: learn | ||
authors: AugustinMauroy | ||
--- | ||
|
||
# Running TypeScript with a runner | ||
|
||
In the previous article, we learned how to run TypeScript code using transpilation. In this article, we will learn how to run TypeScript code using a runner. | ||
|
||
## Running TypeScript code with `ts-node` | ||
|
||
[ts-node](https://typestrong.org/ts-node/) is a TypeScript execution environment for Node.js. It allows you to run TypeScript code directly in Node.js without the need to compile it first. Note, however, that it does not type check your code. So we recommend to type check your code first with `tsc` and then run it with `ts-node` before shipping it. | ||
|
||
To use `ts-node`, you need to install it first: | ||
|
||
```bash | ||
npm i -D ts-node | ||
``` | ||
|
||
Then you can run your TypeScript code like this: | ||
|
||
```bash | ||
npx ts-node example.ts | ||
``` | ||
AugustinMauroy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
## Running TypeScript code with `tsx` | ||
|
||
[tsx](https://tsx.is/) is another TypeScript execution environment for Node.js. It allows you to run TypeScript code directly in Node.js without the need to compile it first. Note, however, that it does not type check your code. So we recommend to type check your code first with `tsc` and then run it with `tsx` before shipping it. | ||
|
||
To use `tsx`, you need to install it first: | ||
|
||
```bash | ||
npm i -D tsx | ||
``` | ||
|
||
Then you can run your TypeScript code like this: | ||
|
||
```bash | ||
npx tsx example.ts | ||
``` | ||
AugustinMauroy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
### Registering `tsx` via `node` | ||
|
||
AugustinMauroy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
If you want to use `tsx` via `node`, you can register `tsx` via `--import`: | ||
|
||
```bash | ||
node --import=tsx example.ts | ||
``` |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.