My first fullstack application with completed frontend side (Vue.js) and backend (Node + GraphQL). In aplication you can login or create account, and after this, create your own or book others. for authentication app uses JWT.
Concurrently npm package allow aplication to run two localhosts with one npm script:
# after cloning repo install dependencies for server
npm install
# and for client
cd client && npm install
# go back to project root directory
cd ..
# run dev-serve with hot reload at localhost:4001 for server and localhost:8080 for client
npm run dev
# or build for production with minification
npm run build
After runing server you have access to graphiQL app at http://localhost:40001/graphql