Skip to content

A simple video search engine built on React using Youtube's data search API

Notifications You must be signed in to change notification settings

ankit-c11/Video-Search-React-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A simple video search engine built using React

Checkout[https://ankit-c11-videosearch.netlify.app/]

5 videos are received from the API in response of the query made. On clicking the video from result list, user gets the video details and play screen(iframe).

Screenshots:

videoPlayer

NOTE:

In the src/Components Directory, there needs to be a file "youtube.js" with the axios configured with API Key

Here is what the file looks like

import axios from 'axios'

const KEY = 'YOUR-API-KEY-HERE'

export default axios.create({
    baseURL:'https://www.googleapis.com/youtube/v3',
    params:{
        part:'snippet',
        maxResults: 5,
        key: KEY
    }
});

About

A simple video search engine built on React using Youtube's data search API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published