A boilerplate using the Quick Start of Angular 2 with Electron, TypeScript, Sass and NPM Scripts
Make sure you have the node installed on your machine and follow the commands...
# clone application
$ git clone https://github.com/thompsonemerson/angular2electron.git
$ cd angular2electron
# install dependencies
$ npm install
# start application
$ npm start
and done! if everything went right, the application starts to run!
$ npm install
: Install all necessary dependencies of the application.
$ npm start
: Runs application in development mode.
$ npm run tsc
: Runs the TypeScript compiler once.
$ npm run tsc:w
: Runs the TypeScript compiler in watch mode.
$ npm run sass
: Runs the Sass compiler once.
$ npm run sass:w
: Runs the Sass compiler in watch mode.
$ npm test
: Compiles, runs and watches the karma unit tests.
$ npm run e2e
: Run protractor e2e tests, written in JavaScript (*e2e-spec.js).
Help improve these docs. Open an issue or submit a pull request.
- Navigate to the main page of the repository
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -m 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request =D
MIT License © Emerson Thompson