ryosk7 / angular-universal

Angular Universal 100% powered by Angular CLI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This project was generated with Angular CLI version 11.2.4.

Angular Universal 100% powered by Angular CLI

Fast, Unopinionated, Minimalist starter kit for Angular Universal 100% powered by Angular CLI.

Unlike the Official Angular Universal starter kit and other Awesome Universal Seed Projects, this starter kit is universal 100% which means you developing for both browser and server at the same time.

The main other difference is that you only need Angular CLI to kick off your next Angular Universal project:

  • ng build - Building bundles for both browser and server platforms in same compilation ;
  • ng serve - Running universal dev server with Hot Module Replacement (HMR) enabled on browser and server sides ;
  • ng serve -c spa - Running universal dev server with Server Side Rendering (SSR) disabled for angular routes only.

In other words, this starter kit gives superpower for those who want develop universal application fastly with no pain. Just keep in mind with great power comes great responsibility (Universal Gotcha's).

Getting started

git clone https://github.com/enten/angular-universal
cd angular-universal
npm install
./node_modules/.bin/ngcc
ng serve

Development server

Run ng serve to start universal dev server. Navigate to http://localhost:4000/.

The app will automatically hot-reload on server and browser sides if you change any of the source files.

The full compilation will automatically restart if a hot chunk can't be applied on server side.

Tip: run ng serve -c spa to disable server side rendering of routes only.

Universal dev server with ng-udkc

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/app directory.

Run ng build --prod for a production build.

Run node dist/app/server/main.js to start application built.

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.

About

Angular Universal 100% powered by Angular CLI


Languages

Language:HTML 58.7%Language:TypeScript 35.9%Language:JavaScript 5.2%Language:SCSS 0.2%