Skip to content

lucidogen/lucy-boot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lucy Boot Build Status

Part of Lucidity project.

This is the code responsible for handling the top-level electron application (main) process and native GUI. It is a very minimal library to just enable booting the application. You should usually include lucidity which contains other important libraries such as the runtime, live coding and composition support.

Currently, there are no customization settings.

Installation

npm install lucy-boot --save

Setup

Once installed, create an 'index.js' file in the root directory with:

require ( 'lucy-boot' )
.boot ()

Now you can start Lucidity from within the root directory:

electron .

Note: you can install electron with

npm install -g electron-prebuilt

Tests

npm test

Contributing

Please use 'jessy style'.

Add unit tests (when possible) for any new or changed functionality.

Release History

  • 0.1.1 (2015-09-22) Fixed pipe errors, working gallery.
  • 0.1.0 (2015-09-02) Initial release.