Node.js は Chrome JavaScript 上で実行されるプラットフォームで、高速でスケーラブルな Web アプリケーションを簡単に構築できます。最新バージョンのnode.js PPAは、公式Webサイトによって保守されています。この PPA を Ubuntu 19.04、18.04 LTS、16.04 LTS (Trusty Tahr)、および 14.04 LTS (Xenial Xerus) システムに追加し、簡単なコマンドを使用して Linux VPS に Node.js をインストールできます。
NVM を使用した特定の Nodejs バージョンのインストールを参照してください。
$ sudo apt-get install curl python-software-properties $ curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
$ sudo apt-get install curl python-software-properties $ curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
ステップ 2: Node.js を Ubuntu にインストールする
node.js ppa を Ubuntu システムに正常に追加できます。次に、apt get を使用して次のコマンドを実行し、ノードを ubuntu にインストールします。これにより、node.js を含む NPM もインストールされます。このコマンドは、他の多くの依存パッケージもシステムにインストールします。$ sudo apt-get install nodejs
ステップ 3:node.js と npm のバージョンを確認する
node.js をインストールした後、インストールされているバージョンを確認してください。現在のバージョンの詳細については、node.js の公式 Web サイトをご覧ください。$ node -v v11.12.0
$ npm -v 6.7.0
$ vim server.js
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(3000, "127.0.0.1"); console.log('Server running at http://127.0.0.1:3000/');
$ node server.js debugger listening on port 5858 Server running at http://127.0.0.1:3000/
$ node --inspect server.js Debugger listening on ws://127.0.0.1:9229/8976a32b-cf99-457c-85fb-e7288cbadac6 For help see https://nodejs.org/en/docs/inspector Server running at http://127.0.0.1:3000/
以上がPPA を使用して最新の Node.js と NPM を Ubuntu にインストールする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。