GithubHelp home page GithubHelp logo

node-mini-sprint's Introduction

Node Mini Sprint

This repo contains a client directory and a server directory. While it is all in one repo, they must be run separately and you should consider them to be 2 separate applications.

Getting Started

Open 2 terminal windows.

  • In one terminal window open the client directory and do the following:

    • run live-server. This is serving your client files. If you open your index.html from Finder (e.g. you are seeing file:/// in the URL bar) you will run into CORS issues. Use live-server.
    • Your client will run, but it does not communicate with the server yet. You need to write the appropriate code.
  • In the other terminal window open the server directory and do the following:

    • npm install
    • npm start or nodemon
    • Your server will run, but it will not respond to requests correctly until you write the appropriate code.

Important Note: After each step, commit and push your current progress. You'll notice in the later steps (Step 2 and onward), you are told to check out new branches. For pushing the work done on those branches, rather than git push origin master, you'll need to run git push origin branchName.


Step 1: Raw Node

  • Finish out the routing for the existing server to handle incoming client requests

Client/Server Communications

The client will communicate with your server via jQuery's AJAX. For your convenience the jQuery script is in the index.html file already.

Your server will listen for and respond to client requests. You are building an API similar to ones that you have used in the past. For this step you will be using Node's http module (no Express allowed).

Focus on understanding the following:

  • What is the difference between the client and the server?
  • What is the request/response cycle?
  • What is CORS and how do you prevent CORS errors?
  • What are http verbs? When are they used?
  • What are http status codes and how do you respond with them?
  • What is an endpoint and where do you see it?
  • What tools can you use to test your server?
  • Where do you see your server console.logs?
  • What parts of your code are asynchronous and how will you handle that?

Step 2: Refactor to Express

  • Check out a new branch express-server
  • Refactor your existing server from http to Express.js

Note: Use the Express documentation as your primary resource for this.


Step 3: Converting to React

  • Check out a new branch react-client
  • In the react-client directory, build out a refactored version of the original frontend in React
  • Serve up your React client from your Express server using express.static
  • (Optional) Refactor your jQuery's AJAX client requests to use Axios

The dependencies for React have been set up in the react-client directory. To begin transpiling the code, run npm run build in your client terminal.

Note: Use the React documentation as your primary resource for this.


Step 4: Add data persistence

  • Check out a new branch add-mysql
  • Design a schema.sql for storing the existing application data
  • Add data persistence to the information being stored in your backend (refactor the Express server as needed)

Note: use the MySQL and mysqljs documentation as your primary resources for this.


Step 5: Full CRUD

  • Check out a final branch full-crud
  • Expand the functionality of your React frontend until it sends at least one request of each CRUD category
  • Build out server routing to handle those requests
  • Refactor your persistence layer as-needed to support these new routes

node-mini-sprint's People

Contributors

teddim avatar tmchandler avatar aliciav-texas avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.