본문 바로가기

프로그래밍18

첫 번째 앱 만들기 첫 번째 웹 사이트 app.js const http = require('http'); const hostname = '127.0.0.1'; const port = 3000; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World'); }); server.listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`); }); app.js 실행하기 node app.js 웹 사이트 접속하기 URL : http://local.. 2021. 11. 25.
Node.js 소개 웹사이트 웹사이트 URL : https://nodejs.org/ko/ Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org Node.js 란? Node.js 홈(About) URL : https://nodejs.org/ko/about/ Node.js 홈(가이드) URL : https://nodejs.org/ko/docs/guides/ 위키백과 URL : https://ko.wikipedia.org/wiki/Node.js Node.js 설치하기 Node.js 홈 페이지에 접속 -> LTS 버전 또는 최신 버전 다운로드 -> Node.js 설치 설치 확인 node -v 2021. 11. 25.
[ TCP/IP 소켓 프로그래밍 - 프로그램의 흐름 ] [ 소켓 프로그래밍의 기본적인 흐름 ]1. 클라이언트 프로그램의 흐름 - socket() -> connect() -> read()/write() -> close() 2. 서버 프로그램의 흐름 - socket() -> bind() -> listen() -> accept() -> read()/write() -> close() 2017. 4. 12.
main() 함수의 원형 [ main() 함수에 대해서 ] 1. C 언어의 프로그램 진입 점이다. ​ - C 언어로 작성된 프로그램은 main() 함수로 시작해서 main() 함수로 끝난다. 2. main() 함수의 반환 형식은 int 타입 이다. ​ - main() 함수의 반환 형식은 항상 int 타입 이어야 한다. - void main(void) 와 같이 사용 하는 경우도 볼 수 있지만 C 표준에서는 main() 함수의 반환 형식은 int 이외에는 어떤 것도 허용 하지 않는다고 기재 되어 있다. 3. main() 함수의 명령행 인자 - void: 명령행 인자가 없는 경우 - argc: 명령행 인자의 개수 - argv: 명령행 인자의 데이터 - envp: 시스템의 환경 출력 4. Parameter(매개변수, 인자) vs Arg.. 2016. 11. 26.