pvogel1967 / relayClassTeam2_11012017

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to Introduction to Relay Modern Class

Instructor

Eric Greene - http://t4d.io - LinkedIn

Schedule

Class:

  • Monday - Wednesday, 9:15am to 4:30pm PDT (with questions until 5pm)

Breaks:

  • Morning: 10:30am - 10:40am
  • Lunch: Noon to 1pm
  • Afternoon #1: 2:05pm - 2:15pm
  • Afternoon #2: 3:20pm - 3:30pm

Course Outline

  • Day 1 - Relay Overview, Relay Queries
  • Day 2 - Relay Queries, Relay Mutations
  • Day 3 - Relay Mutations, Project

Links

Instructor's Resources

Other Resources

Setup Instructions

This is a starter project for creating an HTML/SASS/React/Redux/Relay application.

Application Setup

Step 0. Please completely read and thoroughly understand the instructions below before performing them.

Step 1. Download Install Node.js version 8 or higher. Version 8 or higher MUST be installed. If you have an older Node.js version that you need to keep, then use something like NVM to manage multiple Node.js installations. To install Node.js click here.

Step 2. Download the repository as a zip file. Extract the zip file to a working folder on your system.

Step 3. Open a new terminal window, change to the folder where you extracted the zip file. You should see a package.json file in the folder.

On Windows, the terminal is called "Node.js Command Prompt". This will command prompt will contain the proper paths for Node.js development. DO NOT RUN the Node.js program. Click the icon named "Node.js Command Prompt". For Mac users, the Mac terminal is all you need.

Step 4. From the terminal, run the following command:

npm i && npm start

It will take a few minutes for this command to complete. If you have connection issues due to a proxy server, please edit the .npmrc file per the instructions in that file. Then re-run the command above.

This set has been completed successfully when you receive the following message:

[1] Child html-webpack-plugin for "index.html":
[1]     chunk    {0} index.html 541 kB [entry] [rendered]
[1]         [0] ./~/lodash/lodash.js 540 kB {0} [built]
[1]         [1] ./~/html-webpack-plugin/lib/loader.js!./src/index.html 607 bytes {0} [built]
[1]         [2] (webpack)/buildin/global.js 509 bytes {0} [built]
[1]         [3] (webpack)/buildin/module.js 517 bytes {0} [built]
[1] webpack: Compiled successfully.

This terminal window is now running the web server, a second terminal window will need to be opened to run additional terminal commands.

Step 5. Open a web browser, and navigate to http://localhost:3000. The starter web application should load and be usable.

Note: This command will run, and then wait for file changes to process updated source code from the client and server folders. Webpack does NOT exit and return to a terminal prompt. Please do not close this terminal window.

To Modify the Web Application

Step 6. Open your favorite text editor (such as Visual Studio Code), and modify the files in the client and server folders. When file changes are saved, webpack and nodemon will automatically transpile and bundle the server and client application code and assets. To see the changes, reload your web browser (live reload is enabled so reloading will probably occur automatically).

I recommend install the following Visual Studio Code extensions:

  • dbaeumer.vscode-eslint
  • mkaufman.htmlhint
  • DavidAnson.vscode-markdownlint
  • glen-84.sass-lint
  • robertohuertasm.vscode-icons
  • kumar-harsh.graphql-for-vscode

NPM Scripts Command Reference

From a terminal, in the root project folder (where the package.json file exists), the following commands can be executed to perform various project development tasks.

  • npm start - starts the entire application
  • npm test - run unit tests
  • npm test -- --updateSnapshot - run unit tests and update snapshots
  • npm run test:coverage - run unit tests with coverage
  • npm run test:debug - run unit tests in debug mode
  • npm run clean - removes the generated files
  • npm run server-init - runs initial server transpile and schema generation for relay compiler
  • npm run server - runs babel, outputs the generated server files, and executes them with nodemon
  • npm run client - runs the webpack development web server
  • npm run rest - runs the JSON server to provide REST services
  • npm run relay - runs the Relay Compiler in Watch Mode
  • npm run relay:once - runs the Relay Compiler Once

Useful Resources

About

License:MIT License


Languages

Language:JavaScript 99.7%Language:CSS 0.2%Language:HTML 0.1%