Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 614 Bytes

File metadata and controls

22 lines (17 loc) · 614 Bytes

react-express-apollo

GraphQLサーバーとGraphQLクライアントのDEMOアプリ

セットアップと起動

# GraphQLサーバーのセットアップ
$ cd express-graphql
$ npm install

# GraphQLサーバーの起動 起動後は、http://localhost:4000/graphql へアクセスするとwebエディタにアクセスできる
$ npm start
# GraphQLクライアントのセットアップ
$ cd react-graphql
$ npm install

# GraphQLクライアントの起動 起動後は、http://localhost:3000 へアクセスするとGraphQLサーバーの値取得を確認できる
$ npm start