1
1

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 5 years have passed since last update.

Node.jsって何だよ

Last updated at Posted at 2018-11-10

前提知識

実行環境

プログラミング言語というのは、実行環境がないと動かすことができません。
プログラミング言語を、テキストファイル(.txt)に書いただけでは何も起こりません。
その言語をプログラムとして理解し、記述された通りに動かす必要があります。
それを行う”場”が、「実行環境」です。

Node.js

Node.jsはJavaScriptのランタイム環境(実行環境)。
ランタイム環境とは、プログラムを実行するための環境。

一般的にwebサイトで利用されているJavaScriptの実行環境は、ブラウザです。
つまり、今までブラウザ上でしかJavaScriptは動かすことができませんでした。
ブラウザ上以外でもJavaScriptを動かしたいという思いで産まれたのが、JavaScriptの実行環境「Node.js」です。

他にも、以下のような機能も持っています。

  • ライブラリ管理
  • REPL
1
1
4

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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?