[부트캠프] IT 코딩 부트캠프 후기/[Let's TIL😶🌫️] Node.js
2022. 11. 25.
[Node.js] Glitch로 Node.js 프로토 타입 시험해보기
코드샌드박스나, 글리치 등을 통해서 환경 설정없이 웹에서도 코드를 짜는 게 가능하다. https://glitch.com/ Glitch: The friendly community where everyone builds the web Simple, powerful, free tools to create and use millions of apps. glitch.com 깃헙을 통해서 로그인이 가능하다! 1. 노드 프로젝트 생성하기 2. server.js에서 내용 삭제 후 새로 시작 - 기본적인 셋업하기 const http = require('http') //http라는 모듈을 사용하겠다. 이때 http로는 서버를 만들 수 있다. const server = http.createServer((req, res) =..