Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andersclark/reactfour
A simple Connect Four game written in React
https://github.com/andersclark/reactfour
Last synced: 26 days ago
JSON representation
A simple Connect Four game written in React
- Host: GitHub
- URL: https://github.com/andersclark/reactfour
- Owner: Andersclark
- Created: 2019-12-26T10:47:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T03:42:18.000Z (almost 2 years ago)
- Last Synced: 2023-03-08T06:28:27.866Z (over 1 year ago)
- Language: JavaScript
- Size: 7.93 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Four
## About
This is a simple Connect Four-game written in React. I've been tinkering on this as my sandbox while learning React so apologies for redundancy, over-complicated expressions and the mix of old and new syntax etc. This is in no way my attempt at writing top-level React-code. It's me playing, learning, trying things out etc.
## How to
Assumes you have Node.js and NPM or Yarn installed.* Clone or download the project.
* In your command prompt navigate to the project folder
* Run `npm install` to install the dependencies - a node_modules-folder should appear.
* Run `npm start` or `yarn start` to start the development server on [http://localhost:3000](http://localhost:3000)## Learning-tips
**Praise where praise is due:** I almost entirely learned React from [Academinds Maximillian Schwartzmüller](https://www.youtube.com/channel/UCSJbGtTlrDami-tDGPUV9-w) who is, to my mind, the best remote Javascript teacher on the internet.
**For the other side of Javasript:** the technical underbelly which noone talks about but causes a lot of the confusion and frustration about *"this", scope, type-coercion*, the flexible use of functions and so on I recommend Kyle Simpsons ["You don't know JS yet"](https://github.com/getify/You-Dont-Know-JS).