nodeをインストールしてプログラムを実行しようとした所、エラーが出た。
エラー文
internal/modules/cjs/loader.js:834
throw err;
^
Error: Cannot find module 'express'
プログラム
app.js
constexpress=require('express')constapp=express()constport=3000app.get('/',(req,res)=>{res.send('Hello World!')})app.listen(port,()=>{console.log(`Example app listening at http://localhost:${port}`)})
https://expressjs.com/ja/starter/hello-world.html
対処方法
expressをinstallし、パスを通す。
oh、簡単。。。
$ npm install -g express
$ export NODE_PATH=/usr/local/lib/node_modules