/react-workshop

This is a small repo containing the code used in the workshop: Robust web applications with React/Redux

Primary LanguageJavaScriptMIT LicenseMIT

React-Workshop

This is the code used in the course Robust web applications with React/Redux.

Getting started

Prerequisites

Open a terminal and clone this repository into a local folder.

git clone https://github.com/rudfoss/react-workshop.git

The last thing we need to do before we begin is to install all the necessary dependencies. Open a terminal in your project root folder and run:

npm i # short for npm install

Recommended tools

Throughout the course we will be using Visual Studio Code. You are free to use any IDE you like, but the project is set up with some additional tools that will seamlessly integrate with VSCode should you decide to use it.

If you are using VSCode you should also consider installing these extensions:

  • ESLint
  • vscode-icons
  • Emojisense 😸

To install them start VSCode, navigate to the Extensions (Ctrl+Shift+X on Windows) and search for each one. After installing them restart VSCode.

Additional things enabled by using VSCode

  • Code snippets for quickly scaffolding components.
  • Auto-fix eslint errors on file save.