nodejs
文書の過去の版を表示しています。
Node.js
基本操作
インストール
dnf install -y --setopt=nodesource-nodejs.module_hotfixes=1 dnf install nodejs -y --setopt=nodesource-nodejs.module_hotfixes=1
バージョン確認
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.1700791548.txt.gz · 最終更新: 2023/11/24 11:05 by mikoto