This package has been deprecated

Author message:

Deprecated in favour of electron-pug

electron-jade

1.3.1 • Public • Published

--- NOTICE OF DEPRECATION --

This package has been deprecated in favour of electron-pug and is not maintained further.

electron jade

This module is a simple file protocol interceptor for electron which compiles all (local) URLs to files with .jade extension (e.g /home/electron-jade/index.jade) on the fly.

Neutron Compatible NPM Version license

Installation

npm install electron-jade

Usage

Just initialize this module with desired options for Jade package and your locals:

'use strict';
 
var app = require('app');
var locals = {/* ...*/};
var j = require('electron-jade')({pretty: true}, locals);
var BrowserWindow = require('browser-window');
 
// Standard stuff
 
app.on('ready', function () {
  mainWindow = new BrowserWindow({ width: 800, height: 600 });
 
  mainWindow.loadUrl('file://' + __dirname + '/index.jade');
  // the rest...
});

Even more!

If you want to have least effort when developing electron packages, take a look at neutron!

Readme

Keywords

Package Sidebar

Install

npm i electron-jade

Weekly Downloads

1

Version

1.3.1

License

MIT

Last publish

Collaborators

  • yan-foto