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

ngmeta

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngmeta

A tool for updating meta tags in an Angular application.

  • 13.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
Source

ngmeta

npm npm bundle size GitHub stars GitHub forks

A tool for updating meta tags in an Angular application.

Getting Started

npm i ngmeta

How To Use

First import the NgMeta as a provider into your app.

import { NgMeta } from 'ngmeta';
...
@NgModule({
  providers: [
    NgMeta
  ],
  bootstrap: [
    AppComponent
  ]
})
export class AppModule { }

To dynamically edit this data whenever a page is loaded. Import NgMeta into your component, then inside of your constructor pass in the NgMeta service as an argument.

import { NgMeta } from 'ngmeta';
...
export class AppComponent {
    constructor(private ngmeta: NgMeta) {}
}

Then in the component we can call our NgMeta service this.ngmeta.setHead(). This takes an object of the new values for the tags you want. Below we change the title and description data on a page.

this.ngmeta.setAll({
  title: "Google",
  description:
    "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.",
});

Now our head data will display

<head>
  <title>Google</title>
  <meta
    name="description"
    content="Search the world's information, including
  webpages, images, videos and more. Google has many special features to help
  you find exactly what you're looking for."
  />
</head>

Documentation

Full documentation for the NGMeta service is available here.

Changes

Changes happen, check out the changelog to see the latest changes.

Keywords

FAQs

Package last updated on 10 Apr 2022

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