이미지 삽입
Raspberry Pi List> app.js var http = require('http'); //node에 내장된 http 모듈 사용 var hostname = '127.0.0.1'; //호스트 주소 var port = 3000; //포트번호 http.createServer(function(req, res){ res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf-8'}); res.end('Hello World\n'); }).listen(port, hostname); console.log('Server running at http://' + hostname + ':' + port);
소개글
원포올 선임 연구원
Kshield Jr. 2기 인증생
Cyber Guardians 수료생
플러터 앱 개발 강사
플라스크 웹 개발 강사
LG 쿠버네티스 보조강사
멀티캠퍼스 악성코드 보조강사
멀티캠퍼스 쿠버네티스 보조강사
금융감독원 쿠버네티스 보조강사
<시스템 해킹 프로토스타> 저자
<안드로이드 앱 개발에 딱 맞는 플러터와 다트 입문> 저자
문의: reasley.com@gmail.com
Category