목록 IPFS-#1.IPFS 사용법(CLI,Ubuntu) IPFS-#2.IPFS 사용법(nodejs,Ubuntu) IPFS 사용법 IPFS를 javascript로 nodejs에서 실행해본다. ipfs-api 모듈 설치 sudo npm install -save ipfs-api ipfs 연결 const ipfsAPI = require('ipfs-api'); const ipfs = ipfsAPI('192.168.0.8' ,'5001', {protocol: 'http'}) ipfs.add() ipfs.add()는 파일을 ipfs에 보내기위한 함수이다. 먼저 ipfs_upload_testfile.txt 라는 파일에 "hello world"내용을 적는다. echo "hello world" > ipfs_upload_..
목록 IPFS-#1.IPFS 사용법(CLI,Ubuntu) IPFS-#2.IPFS 사용법(nodejs,Ubuntu) IPFS 사용방법 IPFS 다운로드 먼저 IPFS 압축 파일을 받는다. wget https://dist.ipfs.io/go-ipfs/v0.4.17/go-ipfs_v0.4.17_linux-amd64.tar.gz 압축을 해제해준다. tar xzvf go-ipfs_v0.4.17_linux-amd64.tar.gz IPFS를 설치해준다. sudo ./install.sh IPFS 저장소를 초기화 한다. ipfs init /home/xofl93/.ipfs 이 디렉토리에 저장소가 초기화된다. ll /home/xofl93/.ipfs IPFS 실행 IPFS를 실행시킨다. ipfs damon #ifps damo..