Node.js를 사용할 일이 있어서 빠르게 찾아봤다.
Reference: https://github.com/nodesource/distributions/blob/master/README.md#debinstall
1. PPA 등록
- curl도 싫어하고 ppa 등록하는 것도 싫어하지만...
> curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
2. nodejs 설치
- 이제 그냥 설치하면 된다.
❯ sudo apt install -y nodejs
3. Test
- 잘 되는지 직접 해보자.
> nano ./server.js
var http = require('http');
var os = require('os');
var host = os.hostname();
var handleRequest = function(request, response) {
console.log('Received request for URL: ' + request.url);
response.writeHead(200);
response.end('Server is running on: ' + host);
};
var www = http.createServer(handleRequest);
www.listen(8080);
> nodejs ./server.js
- 웹브라우저로 살펴보자.
잘 된다!!!
반응형
'잘난놈되기' 카테고리의 다른 글
SiteMap (0) | 2020.08.30 |
---|---|
Minikube 실습 - Pod 생성 (docker build & kubectl run & service) (0) | 2020.08.22 |
의자 가죽 리폼 (피아노의자, 식탁의자) (0) | 2020.05.25 |
인터넷 속도 측정 사이트 (넷플릭스) (0) | 2020.03.14 |
Developer Survey Results 2019 (Stackoverflow) (0) | 2020.02.21 |