0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Typescript - Hello World

Last updated at Posted at 2021-10-01

Typescriptをはじめたいと思います。
Node.jsをインストールしていない場合はインストールします。

プロジェクト作成

Node.jsのプロジェクトを作成します。

npm init -y

続いて、typescriptパッケージをインストールします。

npm i -D typescript

実装

次のソースコードを作成します。

hello.ts
console.log("Hello world!");

コンソールにHello worldを表示せよという命令です。

実行

ソースコードをコンパイルします。

npx tsc hello.ts

同じディレクトリにhello.jsが生成されているはずですので、これを実行します。

node hello.js

「Hello world!」と表示されたら成功です。

参考

Typescript - The Basics
https://www.typescriptlang.org/docs/handbook/2/basic-types.html

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?