Skip to content

(Internal SurveyCTO code dependency) Static file serving for Electron apps

License

Notifications You must be signed in to change notification settings

isabella232/electron-serve

 
 

Repository files navigation

electron-serve Build Status

Static file serving for Electron apps

Normally you would just use win.loadURL('file://…'), but that doesn't work when you're making a single-page web app, which most Electron apps are today, as history.pushState()'ed URLs don't exist on disk. It serves files if they exist, and falls back to index.html if not, which means you can use router modules like react-router, vue-router, etc.

Install

$ npm install electron-serve

Requires Electron 3 or later.

Usage

const {app, BrowserWindow} = require('electron');
const serve = require('electron-serve');

const loadURL = serve({directory: 'renderer'});

let mainWindow;

(async () => {
	await app.whenReady();

	mainWindow = new BrowserWindow();

	await loadURL(mainWindow);

	// The above is equivalent to this:
	await mainWindow.loadURL('app://-');
	// The `-` is just the required hostname
})();

API

serve(options)

options

Type: object

directory

Required
Type: string

The directory to serve, relative to the app root directory.

scheme

Type: string
Default: app

Custom scheme. For example, foo results in your directory being available at foo://-.

partition

Type: string
Default: electron.session.defaultSession

The partition the protocol should be installed to, if you're not using Electron's default partition.

Related

About

(Internal SurveyCTO code dependency) Static file serving for Electron apps

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 88.8%
  • TypeScript 6.1%
  • HTML 5.1%