Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
A tool for updating meta tags in an Angular application.
npm install --save ngmeta
First import the NgMetaModule
into your app.
import { NgMetaModule } from 'ngmeta';
...
@NgModule({
imports: [
NgMetaModule.forRoot()
],
bootstrap: [
AppComponent
]
})
export class AppModule { }
To dynamically edit this data whenever a page is loaded. Import NgMetaService
into your component, then inside of your constructor pass in the NgMetaService
service as an argument...
import { NgMetaService } from 'ngmeta';
...
export class HomePage {
constructor(private _ngmeta: NgMetaService) {}
}
Then in the component we can call our NgMetaService
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.setHead({
title: 'Google',
meta : [
{attribute: 'name', type: '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.'}
]
});
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>
Full documentation for the NGMeta service is available here.
For typing you can take two of ther interfaces that NgMetaService
uses by importing them with
import { TagData, MetaData } from 'ngmeta';
interface MetaData {
type: string;
content: string;
attribute?: string;
}
interface TagData {
title?: string;
name?: MetaData[];
property?: MetaData[];
meta?: MetaData[];
canonical?: string;
}
Function | Description |
---|---|
set canonical(canonicalURL: string) | Sets canonical tag for page, to call this._ngmeta.canonical = 'https://www.google.com'; . |
public createMeta(metaData: MetaData) | Creates HTML for a <meta> tag of any attribute. |
get scroll() | Returns boolean value if scroll to top is enabled, to call let scroll: boolean = this._ngmeta.scroll; . |
set scroll(scroll: boolean) | Sets wether <body></body> should scroll to top on route change, to call this._ngmeta.scroll = true; . |
public setHead(tagData: TagData) | Set function setting all <head></head> metadata. |
get title() | Returns string value of current page's title, to call let title: string = this._ngmeta.title; . |
set title(title: string) | Sets <title></title> tag for page, to call this._ngmeta.title = 'Google'; . |
Changes happen, check out the changelog to see the latest changes.
FAQs
A tool for updating meta tags in an Angular application.
The npm package ngmeta receives a total of 23 weekly downloads. As such, ngmeta popularity was classified as not popular.
We found that ngmeta demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.