/electron-posthtml

PostHTML for Electron

Primary LanguageJavaScriptMIT LicenseMIT

NPM Deps Tests Coverage Standard Code Style Chat

Install

npm i -S electron-posthtml

Usage

This modules intercepts the file:// Protocol using Electrons Protocol API. All HTML files will automatically processed by PostHTML.

'use strict'

import { app, BrowserWindow } from 'electron'
import posthtml from 'electron-posthtml'

// Use PostHTML
posthtml([/* Plugins */])

app.on('ready', () => {
  const view = new BrowserWindow({ width: 800, height: 600 })

  view.loadUrl(`file://${__dirname}/index.html`)
})

Maintainers


Michael Ciniawsky

Contributing

See PostHTML Guidelines and contribution guide.

LICENSE

MIT