1.3.1 • Published 8 years ago

electron-jade v1.3.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

--- 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.

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!

1.3.1

8 years ago

1.3.0

9 years ago

1.2.2

9 years ago

1.2.1

9 years ago

1.2.0

9 years ago

1.1.3

9 years ago

1.1.2

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.2.0

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.1

9 years ago