A place for coders to share and create.
- Team_Members
- User_Story
- Technology Used
- Tasks
- Roles
- Successes
- Challenges
- Future-Development
- Sources
- Usage
-
Eric Gip (https://github.com/EricGip)
-
Chase Johnson (https://github.com/chaseyb)
-
David Metcalf (https://github.com/gloriousLoaf)
-
Kimya Fallah (https://github.com/kaishen33)
-
Maurice Chouamou (https://github.com/mauricechouam)
TBD....
TBD...
- Groups / Live chat functionality
- A game room / way for people to relax or so
- Viewing posts by topic (title) and by searching.
- Commenting on posts
- Eric: ..
- David : ...
- Chase: ..
- Kimya:..
- Maurice : ...
- Fully functional application. TBD....
TBD...
TBD...
- React Router
- Proxying API Requests in Development
- React Lifecycle Methods Diagram
- Presentational vs. Container Components
- TBD .....
inside base folder of coding society
$ npm i
$ cd client
$ npm i
(NPM WHEREVER YOU SEE A PACKAGE.JSON)
inside source folder Coding-Society
npm run dev will run both the server and react app.
$ npm run dev
.
- this is because
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/index.js",
"backend": "nodemon server/index.js",
"frontend": "npm run start --prefix client",
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\""
Finally,
localhost:3001
instead of localhost:3000
look inside server/index.js for routes
DO ALL REACT STUFF / FRONT END INSIDE CLIENT
FOLDER.
DO ALL BACKEND / EXPRESS STUFF IN SERVER
.