프로그래밍/NODEJS2 helloworld 서버 작성 nodejs 설치도 해본김에 인사나 해야겟다. 1. 프로젝트 폴더 생성 mkdir helloworld 2. app.js 파일 작성 - 로컬로 9999포트를 사용하는 서버를 띄운다. - 브라우저에서 Hello World메시지를 확인할수 있다 const http = require('http'); const hostname = '127.0.0.1'; const port = 9999; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World\n'); }); server.listen(port, hostname, () => { c.. 2019. 9. 29. NVM 사용 NVM 을 사용하여 프로젝트 별로 Node의 여러버전을 관리 할수 있다고한다. NVM(Node Version Manager) Node의 버전을 관리 해주는 매니저. NVM 설치 curl설치 curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash 설치 완료 되면 ~/.bash_profile 아래 스크립트 추가 됐는지 확인. source ~/.bash_profile Nvm 사용 #Node 설치 nvm install # 설치된 Node 버전 목록 nvm ls # 사용할 Node 설정 nvm use nvm use # 사용할 alias 설정 nvm alias 참고자료: https://github.com/nvm-sh/nvm/bl.. 2019. 9. 29. 이전 1 다음