1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

node.js,express,yarn,postgresql,sequelizeのインストールコマンド集

Last updated at Posted at 2019-10-27

#動作環境
ホストos:win10
ゲストos:ubuntu
virtualbox:5.2.34
Vagrant 2.2.5

以上の条件ではなくとも仮想化が終えられている方であれば以下のインストールは問題ないかと思われます。

#node.jsのインストール
まずnode.jsのバージョン管理をするnvmをインストールし、nvmを使ってnode.jsをインストールします。

nvmインストールコマンドの引用元

https://github.com/nvm-sh/nvm

$curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash

以下のコマンドで変更を反映させます。
$source ~/.bashrc

node.jsインストールコマンドの引用元

nvm install --lts
nvm use --lts

#yarnインストールコマンドの引用元
JavaScriptのパッケージマネージャであるyarnをインストールします。

yarn公式

https://yarnpkg.com/ja/docs/install#alternatives-stable

yarnをインストール
$curl -o- -L https://yarnpkg.com/install.sh | bash
$source ~/.bashrc

#expressインストールコマンドの引用元
node.jsのフレームワークであるexpressをインストールします。

express公式

https://expressjs.com/en/starter/installing.html

expressをインストール
$yarn add express

パッケージインストール
yarn install

#postgresql
DBに今回はpostgresqlを使用します

postgresqlインストールコマンドの引用元

https://www.postgresql.org/download/

postgresqlをインストール
$sudo apt install -y postgresql

#sequelize
DBをexpressで使うためにsequelizeをインストールします。

sequelizeインストールコマンドの引用元

https://yarnpkg.com/en/package/sequelize

sequelizeのインストール
yarn add sequelize
yarn add pg
yarn add pg-hstore
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?