Skip to content

Kento75/react-express-apollo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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