1. 안드로이드폰에 termux를 설치한다.
  2. 먼저, apt-get update 실행
  3. 이어서, Node.js 설치
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
업데이트 진행
$ apt update && apt upgrade

coreutils 설치
$ apt install coreutils

vim 설치
$ apt install vim

nodejs 설치
$ apt install nodejs

프로젝트 폴더 만들기(: /myserver/)
mkdir myserver
cd myserver

package.json 파일 생성
$ npm init
  1. Express 모듈 설치

  2. 코드를 적을 index.js 파일 생성

  3. 서버 실행

  4. 서버 접속

  5. 외부 IP로 접속해 보자

  6. Ngrok 백그라운드로 실행

  7. Node.js 실행

  8. 브라우저로 접속