ReduxSimpleStarter icon indicating copy to clipboard operation
ReduxSimpleStarter copied to clipboard

cannot resolve module 'youtube-api-search'

Open fillipi1 opened this issue 7 years ago • 3 comments

when trying to import YTSearch i get this error ERROR in ./src/index.js Module not found: Error: Cannot resolve module 'youtube-api-search' in /Users/fillipi/ReduxSimpleStarter/src @ ./src/index.js 11:24-53

import React from 'react'; import ReactDOM from 'react-dom'; import YTSearch from 'youtube-api-search';

import SearchBar from './component/searchBar';

const API_KEY = 'AIzaSyAU9eqxZ7GpTpr8X0e_nV2h0AMVnAuJKaI';

YTSearch({key: API_KEY, term: 'surfboards'}, function(data) { console.log(data); });

//create new component. this should produce some html

const App = () => {

return (

<SearchBar />
); }

//take this components generated html and put it on the page (in the DOM)

ReactDOM.render(<App />, document.querySelector('.container'));

fillipi1 avatar Jul 30 '18 18:07 fillipi1

Hi @fillipi1. Try to remove the existing module using npm r youtube-api-search and then re-install the module using npm install --save youtube-api-search.

I don't know why this error is occurring as when I did this project it went out all smoothly.

JK-FlipFlop avatar Jul 31 '18 08:07 JK-FlipFlop

Hey @fillipi1 did you get this resolved? Also note that you should check your package.json file to ensure your npm install works

jack1012t avatar Aug 02 '18 12:08 jack1012t

Hi @fillipi1. Try to remove the existing module using npm r youtube-api-search and then re-install the module using npm install --save youtube-api-search.

I don't know why this error is occurring as when I did this project it went out all smoothly.

thanks a lot.............

AMIT-PATILJIMS avatar Sep 08 '19 11:09 AMIT-PATILJIMS