StephenGrider / ReduxSimpleStarter

Starter pack for an awesome Udemy course
MIT License
3.56k stars 4.65k forks source link

cannot resolve module 'youtube-api-search' #261

Open fillipi1 opened 6 years ago

fillipi1 commented 6 years ago

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 (

); }

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

ReactDOM.render(, document.querySelector('.container'));

JK-FlipFlop commented 6 years ago

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.

jack1012t commented 6 years ago

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

AMIT-PATILJIMS commented 5 years ago

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.............