npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ngx-ssr-exclude

v1.1.0

Published

ngx-ssr-exclude library provides structural directives to exclude certain elements or components from Angular Server-side Rendering (SSR) as well as browser rendering. It allows you to push smaller html pages to the users resulting in faster load times, l

Downloads

222

Readme

SSR Exclude

Build GitHub last commit npm latest version npm bundle size npm license

ngx-ssr-exclude library provides structural directives to exclude elements/ components from Angular Server-side Rendering (SSR) as well as browser rendering. It allows you to push smaller html pages to the users resulting in faster load times, less data/battery consumption and happy users. It can also save precious and costly compute time of the server. It works with both dynamic SSR (any engine viz. Express, ASP.NET Core etc) as well as pre-rendering.

Demo

Installation

npm install --save ngx-ssr-exclude

Import SSRExcludeModule in any module which requires the directive.

import { NgModule } from '@angular/core';
import { SSRExcludeModule } from 'ngx-ssr-exclude';

....
....

@NgModule({
  imports: [SSRExcludeModule]
})
export class YourModule {}

Directives

| Directives | Usage | | ---------------- | ----------------------------------------------------- | | *ssrExclude | Exclude element/ component from server-side rendering | | *browserExclude | Exclude element/ component from browser rendering |

Usage

You can add *ssrExclude directive to any element/ component which you don't want rendered on the server. Similarly, you can add *browserExclude directive to any element/ component which you don't want rendered in the browser. e.g.

<p *ssrExclude>This paragraph won't be rendered on the server.</p>

You can also apply these directives on <ng-container> or <div> to exclude group of elements/ components (<ng-container> is more preferrable because it doesn't add extra style to the page).

Use Case

When none of these directives are available on an element or component, both server and browser runtimes render them. Let's say, you have a heavy component <my-heavy-component> which heavily depends on browser APIs or local javascript runtime. It's useless to let it be processed by the server. So, you can create a light version of the component <my-light-component> which contains maybe plain HTML without any behaviour. You can let server render <my-light-component> in the generated HTML file. And, when Angular runtime gets bootstrapped in the browser, you can replace it with <my-heavy-component> using these two lines of code:

<my-heavy-component *ssrExclude></my-heavy-component>
<my-light-component *browserExclude></my-light-component>

(*browserExclude is important here to prevent rendering of duplicate content on the page)