
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
The npm package 'html-tags' provides a list of standard HTML tags, which can be used in various JavaScript projects to validate, generate, or manipulate HTML content. It is particularly useful for developers working with templating, HTML parsing, or any form of web content generation where knowing if a string is a valid HTML tag is necessary.
List of all HTML tags
This feature provides an array of all standard HTML tags. It can be used to check if a string is a valid HTML tag, or to iterate over all tags for any purpose such as generating documentation or creating dynamic HTML content.
const htmlTags = require('html-tags');
console.log(htmlTags);
List of void HTML tags
This feature provides an array of HTML tags that do not require a closing tag, known as void elements. Useful for HTML parsing or generation to ensure correct tag handling without closing tags.
const voidHtmlTags = require('html-tags/void');
console.log(voidHtmlTags);
Similar to the void tag list in 'html-tags', this package provides a list of void elements. It is specifically focused on these types of tags, whereas 'html-tags' includes both standard and void tags, offering a broader utility.
While 'html-tags' includes standard HTML tags, 'svg-tags' focuses specifically on tags used within SVG files. This specialization makes it ideal for projects that deal primarily with SVG content, but less versatile compared to 'html-tags' for broader HTML document contexts.
List of standard HTML tags
It's just a couple of JSON files that can be used in any environment.
It intentionally leaves out obsolete tags.
npm install html-tags
import htmlTags from 'html-tags';
console.log(htmlTags);
//=> ['a', 'abbr', 'acronym', …]
And void (self-closing) tags:
import {voidHtmlTags} from 'html-tags';
console.log(voidHtmlTags);
//=> ['area', 'base', 'br', …]
Make sure to update types in index.d.ts
when changing HTML elements.
FAQs
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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.