Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angular-router-meta

Package Overview
Dependencies
Maintainers
7
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-router-meta

Angular v4+ meta helper

  • 1.0.1
  • unpublished
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
7
Weekly downloads
 
Created
Source

angular-router-meta

Angular v4+ meta helper.

  • Installation
  • Usage
  • Result

Installation

1. Install the package

$ npm install angular-router-meta --save

2. Import RouterMetaModule from node_modules/angular-router-meta folder

import { RouterMetaModule } from 'angular-router-meta';

Add imported module to the imports section in NgModule decorator

@NgModule({
  .
  .
  .
  imports: [
    :
    RouterMetaModule.forRoot()
  ]
})

NOTE: forRoot() method isn't optional. The module won't work if you do not call this method

3. Inject service in AppComponent constructor


import { Component } from '@angular/core';
import { RouterMetaService } from 'angular-router-meta';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  constructor(
    private routerMeta: RouterMetaService
  ){ }
}

Usage

Add an array of meta tags inside the data property in your routes constant

export const appRoutes: Routes = [
  {
    path: 'somepath',
    loadChildren: 'modules/some/some.module#SomeModule',
    data: {
        meta: [
            {
                name: 'my_name',
                content: 'the_name',
                charset: 'utf-8',
                property: 'some_property'
            },
            {
                name: 'render:status_code',
                content: '200'
            }
        ]
    }
  }
];

Result

These settings in appRoutes constant will render the following code in head tag:

<meta name="my_name" content="the_name" charset="utf-8" property="some_property" angular-router-meta>
<meta name="render:status_code" content="200" angular-router-meta>

Keywords

FAQs

Package last updated on 06 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc