niawjunior / blog

Personal Blog Using Angular(ssr) + Markdown + Firebase

Home Page:https://niawjunior.github.io/blog/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

Angular Blog Engine

A minimal Angular starter for Universal JavaScript using the Angular CLI If you're looking for the Angular Universal repo go to angular/universal

Getting Started

This demo is built following the Angular CLI Wiki guide

Build Time Pre-rendering vs. Server-side Rendering (SSR)

This repo demonstrates the use of 2 different forms of Server-side Rendering.

Pre-render

  • Happens at build time
  • Renders your application and replaces the dist index.html with a version rendered at the route /.

Server-side Rendering (SSR)

  • Happens at runtime
  • Uses ngExpressEngine to render your application on the fly at the requested url.

Installation

  • npm install or yarn

Development (Client-side only rendering)

  • run ng serve

Production (also for testing SSR/Pre-rendering locally)

npm run deploy && npm run start - Compiles your application and spins up a Node Express to serve your Universal application on http://localhost:4000.

npm run build:prerender && npm run serve:prerender - Compiles your application and prerenders your applications files, spinning up a demo http-server so you can view it on http://localhost:8080 Note: To deploy your static site to a static hosting platform you will have to deploy the dist/browser folder, rather than the usual dist

About

Personal Blog Using Angular(ssr) + Markdown + Firebase

https://niawjunior.github.io/blog/


Languages

Language:TypeScript 66.0%Language:HTML 24.1%Language:CSS 9.0%Language:JavaScript 0.9%Language:Dockerfile 0.0%