Lzmog / akademija

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FE2

To start, clone this repo and run:

  1. npm install (install all needed dependencies)
  2. npm start (start our local development server)

http://0.0.0.0:3000 is the default path to our served site

Get movies
axios
  .get(endpoints.mostPopularMovies())
  .then((res) => this.setMovieList(res.data.results))
  .catch((error) => console.log(error));
Movie response data
const response = {
  backdrop_path,
  original_title,
  overview,
  release_date,
  vote_average,
  vote_count,
}

About


Languages

Language:JavaScript 76.9%Language:CSS 14.8%Language:HTML 8.3%