electralize

1.1.20 • Public • Published

Electralize

Electralize is a fast way to start beautiful Electron application using Materialize css.

Setup

Install with git

Clone the repository

git clone https://github.com/CBinet/Electralize.git

Install dependencies

npm install

Launch the application

npm start

Install with npm

Download the npm module

npm install electralize

Extract the content of the electralize module to the current folder then : Launch the application

npm start

Building an app with Electralize

Main.js

This is what would usually be your browser in a normal web application. You can change the window size, bind events on resizing and such in this file.
Note : You can't access DOM elements in main.js.

Index.html

This is your normal index.html file. Use it like your would normally do, like to place elements in the DOM, render templates, import headers, etc. Example, to add your own stylesheets :
index.html

 <link rel="stylesheet" href="./css/styles.css">

App.js

This is where you do your application logic : Bind events on DOM elements, do HTTP requests, etc.
You can import any other javascript file, either with the html script tag in your index.html file or with the require.js library :

index.html

<script src="./js/app.js"></script> 

require.js

var app = require('./js/app.js');

Readme

Keywords

none

Package Sidebar

Install

npm i electralize

Weekly Downloads

7

Version

1.1.20

License

ISC

Unpacked Size

598 kB

Total Files

15

Last publish

Collaborators

  • charles-binet