Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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の基礎学習です。

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"
}`