1. svg-tags
List of standard SVG tags.
svg-tags
Package: svg-tags
Created by: element-io
Last modified: Mon, 27 Jun 2022 02:36:28 GMT
Version: 1.0.0
Downloads: 22,145,159
Repository: https://github.com/element-io/svg-tags

Install

npm install svg-tags
yarn add svg-tags

SVG Tags

NPM version Build Status Coverage Dependencies

List of standard SVG tags.

List built from the SVG 1.1 specification.

Installation

 $ npm install svg-tags --save

Usage

The module is simply a JSON array, so use as you would a normal JavaScript array.

 var tags = require( 'svg-tags' );

console.log( JSON.stringify( tags ) );
/**
* Returns:
*	[ 'a', 'altGlyph', ... ]
*/

console.log( tags.indexOf( 'desc' ) );
// Returns [index]

Examples

To run the example code from the top-level application directory,

 $ node ./examples/index.js

Tests

Unit

Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:

 $ make test

All new feature development should have corresponding unit tests to validate correct functionality.

Test Coverage

This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:

 $ make test-cov

Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,

 $ open reports/coverage/lcov-report/index.html

License

MIT license.


Copyright © 2014. Athan Reines.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code