-
우분투 nodejs 설치개발 2022. 5. 10. 15:23728x90
1. sudo apt update
2. sudo apt install nodejs
3. nodejs -v
4. sudo apt install npm
5. sudo npm install express
var express = require('express'); var app = express(); app.get('/', function(req, res){ res.send('hello world'); }); var server = app.listen(8090, function () { var host = server.address().address var port = server.address().port console.log("Example app listening at http://%s:%s", host, port) }); console.log('Server Start');
입력 후 test.js로 저장 후 C드라이브로 이동
우선 홈디렉토리로 쓸 /nodejs를 만들고
우분투에서 cd /mnt/c로 이동하면 c드라이브 목록이 보임
sudo cp test.js /nodejs/test.js를 하면 복사 완료
cd / 하고 node /nodejs/test.js 하면 서버가 실행된다.
'개발' 카테고리의 다른 글
Spring Boot Image Upload & PreView External Path (0) 2022.06.04 우분투 git 설치 (0) 2022.05.10 우분투 APACHE2 PHP설치 (0) 2022.05.10 Licensed to the Apache Software Foundation (ASF) under one or more (0) 2022.03.20 메뉴얼 (0) 2022.03.16