検索
Node.js_logo
記事の項目

最近の投稿

nodejs インストール

この記事の項目

Ubuntu22 Node.jsの確認

Ubuntu22.04LTSには、標準でNode.jsがインストールされているようです。

				
					$ apt info nodejs
Package: nodejs
Version: 12.22.9~dfsg-1ubuntu3
Priority: extra
Section: universe/web
Origin: Ubuntu
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Original-Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@alioth-lists.debian.net>
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 932 kB
Provides: node-types-node (= 12.20.42~12.22.9~dfsg-1ubuntu3)
Depends: libc6 (>= 2.34), libnode72 (= 12.22.9~dfsg-1ubuntu3)
Recommends: ca-certificates, nodejs-doc
Suggests: npm
Breaks: node-babel-runtime (<< 7), node-typescript-types (<< 20210110~)
Homepage: https://nodejs.org/
Download-Size: 122 kB
APT-Sources: http://jp.archive.ubuntu.com/ubuntu jammy/universe amd64 Packages
Description: evented I/O for V8 javascript - runtime executable
 Node.js is a platform built on Chrome's JavaScript runtime for easily
 building fast, scalable network applications. Node.js uses an
 event-driven, non-blocking I/O model that makes it lightweight and
 efficient, perfect for data-intensive real-time applications that run
 across distributed devices.
 .
 Node.js is bundled with several useful libraries to handle server
 tasks:
 .
 System, Events, Standard I/O, Modules, Timers, Child Processes, POSIX,
 HTTP, Multipart Parsing, TCP, DNS, Assert, Path, URL, Query Strings.


				
			

最新版 Node.js インストール

https://github.com/nodesource/distributions

で、確認する

curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash – &&\
sudo apt-get install -y nodejs

				
					curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - &&\
sudo apt-get install -y nodejs
				
			

パスワード入力すると

インストールが開始された。

				
					## Installing the NodeSource Node.js 20.x repo...

## Populating apt-get cache...

				
			

nodejsのバージョン確認

				
					apt info nodejs
Package: nodejs
Version: 20.5.0-deb-1nodesource1
Priority: optional
Section: web

				
			

バージョンが12 から 20 に上がった。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

関連記事

Redis

$ sudo apt update $ sudo