ユーザ用ツール

サイト用ツール


nodejs

Node.js

基本操作

インストール

dnf install -y --setopt=nodesource-nodejs.module_hotfixes=1
dnf install nodejs -y --setopt=nodesource-nodejs.module_hotfixes=1

Ubuntuの場合

sudo apt install -y nodejs npm
sudo npm install n -g // nをインストール

最新のnをインストール

sudo n stable

最初に入れたnode.jsとnpmはアンインストール

$ sudo apt purge -y nodejs npm
$ sudo apt autoremove -y

バージョン確認

node -v
npm -v

プロジェクト作成

作成したプロジェクトディレクトリの直下で

npm init -y

package.json に以下のように記載する

{
  "name": "web-scraper-nodejs",
  "version": "1.0.0",
  "main": "index.js",
  "scripts": {
    "test": "node test.js",
    "start": "node index.js"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "description": "",
  "dependencies": {
    "axios": "^1.5.1",
    "cheerio": "^1.0.0-rc.12"
  }
}

ファイル入出力

nodejs.txt · 最終更新: 2023/12/21 12:04 by mikoto