Socket
Socket
Sign inDemoInstall

angular-metas

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    angular-metas

AngularJS meta tags module


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
14.4 kB
Created
Weekly downloads
 

Readme

Source

angular-metas

Dynamic tags setter for AngularJS compatible with default router and ui-router

npm: github: github: Build Status

Install

You can use bower, npm or just download the files from the repository

bower
bower install angular-metas --save
npm
npm install angular-metas

Then, include the module file into your index HTML file

<script src="${wherever-your-dependencies-are}/angular-metas/metas.js" />

Usage

Configuration

You should define the metas defaults during the config runtime. Just inject the provider and make use of .setDefaults() method passing an object with the default values

app.config(['metasProvider', function(metasProvider){
    metasProvider.setDefaults({
        title: 'Default title',
        description: 'Default description',
        author: 'John Doe'
    });
}]);

Then synchronize those defaults with your <meta> tags in <head>

<meta name="title" content="{{ metas.title }}" />
<meta name="description" content="{{ metas.description }}" />
<meta name="author" content="{{ metas.author }}" />

Typically, the number of properties in defaults would be the same as the number of <meta> tags.

Service Usage

Inject the metas service into your controllers and use .setMetas() to define the values

app.controller('PageController', ['metas', function(metas){
    metas.setMetas({
        title: 'Page title',
        description: 'Page description'
    })
}]);

In the case above, the author meta will be set with the default value defined through the provider.

Using defaults

Passing null or no argument or empty object or undefined will set defaults.

// All below calls will set default metas
metas.setMetas(null);
metas.setMetas();
metas.setMetas({});
metas.setMetas(undefined);

Full documentation

Check the jsdoc here or create it locally just installing jsdoc and

jsdoc --readme ${path-to-readme} --package ${path-to-package.json} ${path-to-cloned-folder}

Tests

It uses protractor

Run tests using npm

From inside the angular-metas cloned repository run

npm test

Demo

Check it out working here

License

MIT

Keywords

FAQs

Last updated on 04 Apr 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc