목록jsx (2)
겉바속촉
겉바속촉은 항상 root에서 시작하기 때문에 대화를 하겠다는 다음과 같은 명령어를 내려주세요cli와 bash 방에서 대화하겠다~ 라는 뜻으로 이해해주시면 되겠습니다 docker exec -it cli bash 설치된 체인코드 있는 지 확인 peer chaincode list --installed 그랬더니 다음과 같이 없다고 뜹니다 Get installed chaincodes on peer: 저는 컨테이너를 내렸다가 시작했기 때문인데요 이제 설치를 해보겠습니다:) peer chaincode install -n fabcar -v 1.0 -l node -p /opt/gopath/src/github.com/fabcar/javascript-low-level/ language로 줄 수 있는 것은 3가지..
web server programming 1. npm init (🡺package.json이 작성되었음) 2. npm i express 3. npm i -g nodemon 4. public 폴더 생성 --> 하위에 index.html 과 index.jsx 생성 index.html index.jsx var {Component} = React; class Main extends Component{ render(){ return( aaa ); } } ReactDOM.render( , document.getElementById("root") ); 5. server.js 생성 const express=require("express"); const path=require("path"); const app=expres..