/tickTock

Primary LanguageJavaScriptMIT LicenseMIT

Tick-Tock — the AngularJS and electron app

This project is an application skeleton for a typical AngularJS and Electron desktop app.

Install Dependencies

In directory /front

npm install
bower install

In directory /front/app

npm install

Behind the scenes this will also call bower install. After that, you should find out that you have two new folders in your project.

  • node_modules - contains the npm packages for the tools we need
  • app/bower_components - contains the Angular framework files

Note that the bower_components folder would normally be installed in the root folder but angular-seed changes this location through the .bowerrc file. Putting it in the app folder makes it easier to serve the files by a web server.

Run the Application

In directory /front

gulp run

Build the Application

In directory /front

gulp build-electron