Image Image Image Image Image
Scroll to Top

To Top

2019 August

19

Aug
2019

inGeneral

vonJohannes Hoppe

angular-cli-ghpages@next

On 19, Aug 2019 | inGeneral | vonJohannes Hoppe

I’m very excited to announce angular-cli-ghpages@next.
You can now easily deploy your Angular app to GitHub pages. Here is a quick start, that shows how you can publish you app within minutes.

Quick Start

This quick start assumes that you are starting from scratch. If you already have an existing Angular project on GitHub, skip step 1 and 2.

  1. Install the next version of the Angular CLI (v8.3.0-next.0 or greater) globally and create a new Angular project.

    npm install -g @angular/cli@next
    ng new your-angular-project --defaults
    cd your-angular-project
  2. By default the Angular CLI initializes a Git repository for you. To add a new remote for GitHub, use the git remote add command:

    git remote add origin https://USERNAME.github.io/REPOSITORYNAME.git
  3. Add angular-cli-ghpages to your project.

    ng add angular-cli-ghpages
  4. Deploy your project to GitHub pages with all default settings. Your project will be automatically built in production mode.

    ng deploy

    Which is the same as:

    ng run your-angular-project:deploy

  5. That's it! Your project should be available at https://USERNAME.github.io/REPOSITORYNAME.

Learn more at:
https://github.com/angular-schule/angular-cli-ghpages

07

Aug
2019

inAngular2

vonJohannes Hoppe

Kendo UI for Angular: Window-Dialog

On 07, Aug 2019 | inAngular2 | vonJohannes Hoppe

kendo-window-dialog2

Hello fellow Angular Kendoka! I made the Kendo Window-Dialog Component for you. It’s a modal dialog that you can move and resize.

Technically it’s is a wrapper around the Kendo Window (can be moved/resized, but has no overlay), which borrows some functionality from the Kendo Dialog (has an overlay, but cannot be moved/resized):

Features:

  • you can resize and move it
  • it has an overlay
  • remains centered on window scroll / resize
  • it closes on ESC key

Have fun with it:
https://stackblitz.com/edit/kendo-angular-window-dialog