mauriziovitale84 be735c6049 #17 Removed Authentication Service
The auth service is available in the alfresco login component
2016-04-22 17:37:14 +01:00
..
2016-04-22 17:37:14 +01:00
2016-04-19 11:57:05 +01:00
2016-04-19 14:57:31 +01:00
2016-04-21 16:19:42 +01:00
2016-04-06 14:35:46 +01:00
2016-04-19 17:06:47 +01:00
2016-04-21 18:47:42 +01:00
2016-04-19 11:57:05 +01:00
2016-04-06 14:35:46 +01:00

Alfresco Angular 2 Components

alfresco angular2

style

Prerequisites

Start development

Install the npm packages described in the package.json and verify that it works:

$ npm install
$ npm run build.dev

You're ready to write your application.

Remember the npm scripts in package.json:

Development

  • To runs the compiler and a server at the same time, both in "watch mode"

    $ npm start

  • To runs the test

    $ npm test

  • To runs the TypeScript compiler once

    $ npm run tsc

  • To runs the TypeScript compiler in watch mode; the process keeps running, awaiting changes to TypeScript files and re-compiling when it sees them

    $ npm run tsc:w

  • To runs the lite-server, a light-weight, static file server, written and maintained by John Papa and Christopher Martin with excellent support for Angular apps that use routing.

    $ npm run lite

  • To runs the typings tool

    $ npm run typings

  • called by npm automatically after it successfully completes package installation. This script installs the TypeScript definition files this app requires

    $ npm run postinstall