Coder Social home page Coder Social logo

byob_nba's Introduction

BYOB (Build Your Own Backend) NBA

Involved Technologies

  • Node.js / Express
  • Postgres
  • Knex

Project Summary

  • BYOB NBA was a solo student project completed within one week as an introduction to coding in the backend, specifically with regard to fetch request endpoints. NBA team data was downloaded from https://www.basketball-reference.com/ and reformatted into a pet-sized API with two tables (relational database). One table included information on all modern NBA teams, the other included information on all NBA champions.

TeamsData Sample image

ChampionsData Sample image

Endpoints

Request URL Body
GET (all teams) /teams N/A
GET (one team) /teams/:id N/A
GET (all champions) /champions N/A
GET (one champion) /champions/:id N/A
POST (new team) /teams {franchise: 'Las Vegas Vegans', playoff_series: 10, championships: 4,235}
POST (new champion) /champions {champion: 'Las Vegas Vegans', year: 2021, opponent: 'Los Angeles Lakers'}
DELETE (team) /teams N/A

GET all Teams
Path:

/api/v1/teams

Sample Data:

[
  {
    franchise: "Atlanta Hawks",
    playoff_series: 46,
    championships: 1
  },
  {
    franchise: "Boston Celtics",
    playoff_series: 56,
    championships: 17
  }
]

GET all Champions
Path:

/api/v1/champions

Sample Data:

[
  {
    champion: "Detroit Pistons",
    Year: 2004,
    opponent: "Los Angeles Lakers",
    team_id: 1
  },
  {
    champion: "San Antonio Spurs",
    Year: 2003,
    opponent: "New Jersey Nets",
    team_id: 2
  }
]

GET one Team
Path:

/api/v1/teams/:id

Sample Data:

[
  {
    franchise: "Atlanta Hawks",
    playoff_series: 46,
    championships: 1
  }
]

GET one Champion
Path:

/api/v1/champions/:id

Sample Data:

[
  {
    champion: "San Antonio Spurs",
    Year: 2003,
    opponent: "New Jersey Nets",
    team_id: 2
  }
]

POST an NBA Team
Path:

/api/v1/teams

Sample Request Body Format:

 {franchise: 'Las Vegas Vegans', playoff_series: 10, championships: 4,235}

Expected Response (Success):

{ id: 3 }

POST an NBA Champion
Path:

/api/v1/champions

Sample Request Body Format:

   {champion: "San Antonio Spurs", Year: 2023, opponent: "New Jersey Nets"}

Expected Response (Success):

{ id: 3 }

DELETE an NBA Team
Path:

/api/v1/teams

Expected Response (Success):

{msg: 'Successful delete'}

Project Management Board

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.