5

so I have a task to make a Browser embedded into my web Page. I have a React project (I do NOT have a React-native project)

I tried this one: react-embedded-browser

but it seems that's deprecated (the last update was 3 years ago) and any other I find is for react-Native that I do not need. I need embedded browser only in React.

I need something like this: enter image description here

Is there any React Embedded-Browser Solutions?

Zack Zilic
  • 832
  • 3
  • 12
  • 28
  • 1
    Do you only need to do a web search? are you wanting to fully embed a browser? – Will Jun 08 '18 at 09:33
  • I want to fully embed a browser. – Zack Zilic Jun 08 '18 at 09:35
  • 1
    I don't know of any react specific solutions, you can create an iframe based browser however with Google you will need to fiddle with your proxy to change your url to match Googles – Will Jun 08 '18 at 09:51

1 Answers1

2

As mentioned in my comments here is some more information on alternative options:

https://www.npmjs.com/package/cross-fetch

https://developers.google.com/custom-search/docs/tutorial/creatingcse

How to show google.com in an iframe?

Will
  • 732
  • 9
  • 21