Skip to content

Commit 461bbd5

Browse files
update
1 parent b6bcd40 commit 461bbd5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

apps/site/i18n/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"introduction": "Introduction to TypeScript",
4848
"transpile": "Running TypeScript code using transpilation",
4949
"run": "Running TypeScript with a runner",
50-
"runNatively": "Running TypeScript with a Node.js Itself"
50+
"runNatively": "Running TypeScript Natively"
5151
}
5252
},
5353
"asynchronousWork": {

apps/site/pages/en/learn/typescript/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors: sbielenica, ovflowd, vaishnav-mk, AugustinMauroy
1010

1111
**[TypeScript](https://www.typescriptlang.org)** is an open-source language maintained and developed by Microsoft. It's loved and used by a lot of software developers around the world.
1212

13-
Basically, it's a superset of JavaScript that adds new capabilities to the language. The most notable addition is static type definitions, something that is not present in plain JavaScript. Thanks to types, it's possible, for example, to declare what kind of arguments we are expecting and what is returned exactly in our functions or what's the exact shape of the object that we are creating. TypeScript is a really powerful tool and opens a new world of possibilities in JavaScript projects. It makes our code more secure and robust by preventing many bugs before the code is even shipped - it catches problems during code development and integrates wonderfully with code editors like Visual Studio Code.
13+
Basically, TypeScript add 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.
1414

1515
We can talk about other TypeScript benefits later, let's see some examples now!
1616

apps/site/pages/en/learn/typescript/run-natively.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Running TypeScript with a Node.js Itself
2+
title: Running TypeScript Natively
33
layout: learn
44
authors: AugustinMauroy
55
---
66

77
> **⚠️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 on future versions of Node.js.
88
9-
# Running TypeScript with a Node.js Itself
9+
# Running TypeScript Natively
1010

1111
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.
1212

apps/site/site.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
},
3838
"websiteBadges": {
3939
"index": {
40-
"startDate": "2024-08-01T00:00:00.000Z",
41-
"endDate": "2024-09-01T00:00:00.000Z",
40+
"startDate": "2024-09-01T00:00:00.000Z",
41+
"endDate": "2024-10-01T00:00:00.000Z",
4242
"kind": "default",
4343
"title": "Discover",
4444
"text": "TypeScript in Node.js",

0 commit comments

Comments
 (0)