Reputation: 1667
Is it possible to get the Edge browser running on the raspberry pi 2?
I've seen that in some areas the edge browser greatly outperforms Chrome (dom manipulation/css transitions), and I am creating a public display "art project".
Upvotes: 2
Views: 9854
Reputation: 146
The Microsoft Edge browser app is not included on Windows 10 IoT core that runs on the Raspberry Pi 2. However the same web platform behind MS Edge is available on the RP 2 in UWP apps. If you have a website you can take advantage of it through a Hosted Web App or the WebView control.
The steps to deploy an app are listed here. Check out this blog that covers the entire process of deploying on the Pi 2 through VS 2015. You are able to do this through the free community version.
This video covers how to make a Hosted Web App. A fun project and demo app to deploy is here: https://github.com/MicrosoftEdge/JSBrowser. It's a tutorial JavaScript app browser built using the WebView control that is able to run on the Pi 2.
Upvotes: 2