A simple Electron application to create a webview

Clément Barbaza
2 min readJan 23, 2018

--

Here is a simple Electron application to create a webview with some cool features.

Sometimes, you create very useful website or web applications. And you often use these apps because, well, you created useful apps 👍

And sometimes you would like to have a stand-alone application to use it or to give it to your clients. That’s why I wanted to create a very simple Electron app to make an application from a website or web application very quickly and easily.

That’s how the idea of Electron webview came ! I wanted a starter kit/template to create a stand-alone application easily using Electron.

Features

To be clear, the app is simple, because it’s just a webview to display a website/web application (url) in an Electron application.

But when you want a webview, you regulary want features, because they are frequently asked.

That’s why it’s not really just a simple webview.

Electron webview comes with some cool features:

  • Responsive window
  • Remember the window dimensions when reopening
  • Menu & keyboard shortcuts for MacOs
  • No title bar
  • Home button
  • Print function

Executable application and installer

Because it can be convenient to use a stand-alone application for a website or a web application, Electron webview comes with shortcuts to:

  • create a MacOS, Windows and Linux executable with an app icon
  • a DMG installer

More information

I detailed the project technically in the readme of the projet.

You can use the readme and the code as a tutorial to discover and understand the creation of a webview in Electron too.

You can find this starter kit to create a webview in an Electron application on Github. I hope it will help you!

This post was initially published on my blog clementbarbaza.com.

--

--