Ubuntu16.04をベースとして、react,nodejs用の日本語開発環境をラップしてvagrant cloudへアップロードしました。 【環境詳細】 ベース: Ubuntu16.04 GUI: lubuntu 言語:日本語 adminユーザ:ubuntu/ubuntu インストールソフトウェア: nodejs, npm, n, yarn, docker, docker-compose; VisualStudioCode, Chrome, RestAPIClient; Mozc; ダウンロードURL:https://app.vagrantup.com/thundermiracle/boxes/lubuntu1604-ja サンプルVagrantFile Vagrant.configure(“2”) do |config| config.vm.box = “thundermiracle/lubuntu1604-ja” config.vm.box_version = “0.1.0” config.vm.synced_folder “~/code/nodejs”, “/home/vagrant/Code” config.vm.provider “virtualbox” do |vb| # Display the VirtualBox GUI when booting the machine vb.gui = true end end