All Projects → HackYourFuture → React

HackYourFuture / React

Licence: other
This repository contains all the material for the HackYourFuture module "React.js: Building dynamic UIs with modern JavaScript"

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to React

React Cnodejs.org
Material UI version of cnodejs.org, the biggest Node.js Chinese community.
Stars: ✭ 242 (-0.41%)
Mutual labels:  mobx
FlutterSupportChat
App flutter demonstrando o uso das seguintes tecnologias: Firebase, MobX e Flutter Modular.
Stars: ✭ 23 (-90.53%)
Mutual labels:  mobx
react-mobx-local-state-example
React MobX (for Local State) Example
Stars: ✭ 27 (-88.89%)
Mutual labels:  mobx
React Book
《React进阶之路》示例代码
Stars: ✭ 249 (+2.47%)
Mutual labels:  mobx
mobx-crud-example
A crud mobx project using react, featherjs and mongodb
Stars: ✭ 22 (-90.95%)
Mutual labels:  mobx
mobx-react-form-devtools
DevTools for MobX React Form
Stars: ✭ 30 (-87.65%)
Mutual labels:  mobx
Heard
React Native Enterprise Social Messaging App
Stars: ✭ 234 (-3.7%)
Mutual labels:  mobx
kolaboard
A Real-time chat, collaboration and productivity enhancement application for teams built using React.js, Node.js, Socket.IO, MobX, MongoDB.
Stars: ✭ 23 (-90.53%)
Mutual labels:  mobx
taro-ts-mobx-boilerplate
Taro 脚手架 Typescript/ Mobx / icon font / Jest
Stars: ✭ 12 (-95.06%)
Mutual labels:  mobx
stencil-mobx
No description or website provided.
Stars: ✭ 26 (-89.3%)
Mutual labels:  mobx
mst-persist
Persist and hydrate MobX-state-tree stores (in < 100 LoC)
Stars: ✭ 75 (-69.14%)
Mutual labels:  mobx
pub-rules
Rules - Powerful and feature-rich validation library for both Dart and Flutter.
Stars: ✭ 24 (-90.12%)
Mutual labels:  mobx
mobx-router5
Router5 integration with mobx
Stars: ✭ 22 (-90.95%)
Mutual labels:  mobx
Pulse
✨ Pulse is a global state and logic framework for reactive Typescript & Javascript applications. Supporting frameworks like VueJS, React and React Native.
Stars: ✭ 243 (+0%)
Mutual labels:  mobx
umi-plugin-mobx
😍 use mobx-state-tree gracefully in umijs.
Stars: ✭ 33 (-86.42%)
Mutual labels:  mobx
Delorean
A MobX-React Time Travel Debugger
Stars: ✭ 238 (-2.06%)
Mutual labels:  mobx
JavaScript2
This repository contains all the material for the HackYourFuture module "JavaScript 2: DOM Manipulation"
Stars: ✭ 17 (-93%)
Mutual labels:  hyf
orkan
A content management toolkit for building and managing dynamic React applications with ease.
Stars: ✭ 25 (-89.71%)
Mutual labels:  mobx
todo-list
A simple todo list application with React and mobx and antd
Stars: ✭ 25 (-89.71%)
Mutual labels:  mobx
mobx-state-tree-router
State-based router for React and MobX State Tree
Stars: ✭ 18 (-92.59%)
Mutual labels:  mobx

If you are following the HackYourFuture curriculum we recommend you to start with module 1: HTML/CSS/GIT. To get a complete overview of the HackYourFuture curriculum first, click here.

Please help us improve and share your feedback! If you find better tutorials or links, please share them by opening a pull request.

Module #7 - React.js: Building dynamic UIs with modern JavaScript (Frontend)

React Module

Welcome to the React module! Congratulations on making it this far!

In these 4 weeks we will go back to the frontend and learn how to make faster, more modern user interfaces. In the HTML and JavaScript modules you've learned all about creating webpages that that hold unchanging data. No matter who is using the website, the data will always be the same. We call this a static website. At the same time you've build various HTML pages so the user is able to access various parts of the website. We call this a multi-page application (MPA)

In the Node.js module you've learned about how to change the content of the page, based on the user's input, using a templating engine. Type in a keyword and the server sends back a template with customized data. We call this a dynamic website. However, we did it in such a way were we still had to send different pages to the client depending on the URL (for example, / or /users). This is also an MPA.

In this module, however, you'll learn how to make more complex websites. Though, we won't be calling them websites anymore: they'll be web applications. They're not just informational, but allow the user to interact with it. This similar to any application on your desktop. These React applications will also deal with dynamic data: its state changes depending on who's using it.

Besides being dynamic, React applications also are single page applications (SPA). Essentially, this means that on loading the whole application (every page and its contents) is accessible to the user, without the need to send requests to the server to get another page.

Before you start

In order to properly work through this module smoothly we're going to use software that will allow us to write React applications with ease. It's called create-react-app.

Go to your command line and execute the following:

npm install -g create-react-app

Now verify that you have it by executing the following:

create-react-app --version

It should be at least version 2.1.x.

Learning goals

In order to successfully complete this module you will need to master the following:

  • Understand the React way of thinking about user interfaces
  • Know the importance and place of state and how to pass it down
  • Be able to work with different hooks and even create your own
  • Recognize the utility of modularization
  • Putting emphasis on writing reusable code (components)
  • How to handle client-side routing

How to use this repository

Repository content

This repository consists of 3 essential parts:

  1. README: this document contains all the required theory you need to understand while working on the homework. It contains not only the right resources to learn about the concepts, but also lectures done by HackYourFuture teachers. This is the first thing you should start with every week
  2. MAKEME: this document contains the instructions for each week's homework. Start with the exercises rather quickly, so that you can ground the concepts you read about earlier.
  3. LESSONPLAN: this document is meant for teachers as a reference. However, as a student don't be shy to take a look at it as well!

How to study

Let's say you are just starting out with the Databases module. This is what you do...

  1. The week always starts on Wednesday. First thing you'll do is open the README.md for that week. For the first week of Databases, that would be Week1 Reading
  2. You spend Wednesday and Thursday going over the resources and try to get a basic understanding of the concepts. In the meanwhile, you'll also implement any feedback you got on last week's homework (from the Node.js module)
  3. On Friday you start with the homework, found in the MAKEME.md. For the first week of React, that would be Week1 Homework
  4. You spend Friday and Saturday playing around with the exercises and write down any questions you might have
  5. DEADLINE 1: You'll submit any questions you might have before Saturday 23.59, in the class channel
  6. On Sunday you'll attend class. It'll be of the Q&A format, meaning that there will be no new material. Instead your questions shall be discussed and you can learn from others
  7. You spend Monday and Tuesday finalizing your homework
  8. DEADLINE 2: You submit your homework to the right channels (GitHub) before Tuesday 23.59. If you can't make it on time, please communicate it with your mentor
  9. Start the new week by going back to point 1!

In summary:

Weekflow

To have a more detailed overview of the guidelines, please read this document or ask your mentor/class on Slack!

Planning

Week Topics Reading Materials Homework
1. What is React, JSX, State & Props, Deploy a static site Readings W1 Homework W1
2. API calls, Testing Readings W2 Homework W2
3. Client-side routing, Context, Custom hooks Readings W3 Homework W3
4. Project! Readings W4

Finished?

Did you finish the module? Impressive!

If you feel ready for the final challenge, click here to go to Project!

The HackYourFuture curriculum is subject to CC BY copyright. This means you can freely use our materials, but just make sure to give us credit for it :)

Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].