Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mizukiokushima/nodejs_5th
Node.jsの基礎学習です。
https://github.com/mizukiokushima/nodejs_5th
express nodejs webscraping
Last synced: 24 days ago
JSON representation
Node.jsの基礎学習です。
- Host: GitHub
- URL: https://github.com/mizukiokushima/nodejs_5th
- Owner: MizukiOkushima
- Created: 2024-08-16T01:36:35.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-16T07:48:21.000Z (5 months ago)
- Last Synced: 2024-08-20T14:26:46.045Z (4 months ago)
- Topics: express, nodejs, webscraping
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nodejs_5th
### バージョンについて
Node.js v22.1.0### 環境構築
package.jsonファイルの生成
`npm init`
expressのインストール
`npm i express`
axiosのインストール
HTTPのリクエストを送るときに使えるモジュール
`npm i axios`
cheerioのインストール
スクレイピングをするモジュール
`npm i cheerio`
nodemonのインストール
`npm i nodemon`
package.jsonのscriptsの編集
`"scripts": {
"dev": "nodemon server.js"
}`