1.0.0 • Published 5 years ago

react-tag-names v1.0.0

Weekly downloads
14
License
MIT
Repository
github
Last release
5 years ago

react-tag-names

List of React's HTML and SVG tag names. Tag names are scraped directly from @types/react, so you are getting exactly the tag names that React uses internally.

react-tag-names vs html-tag-names

  • Tag names are divided into HTML and SVG tag names. This is useful since React uses different typings for those two categories.

  • Instead of kebab-case (e.g. clip-path), React uses camel-case (clipPath).

  • Since the tag names are taken directly from React's type definition, you are guaranteed to always get exactly the tags that React supports.

Install

npm install react-tag-names

Note: Previous versioning of react-tag-names was coupled to respective react versions (e.g. react@16.9.2 => react-tag-names@16.9.2). As React's list of tag names only changes very rarely, this convention has been discontinued. react-tag-names now follows its own versioning, starting at v1.0.0.

Usage

All (default export)

import reactTagNames from "react-tag-names";

reactTagNames: string[] List of all React tag names (sorted HTML first and SVG last)

[
  "a",
  "abbr",
  "address",
  // ...
  "video",
  "wbr",
  "webview",

  "animate",
  "circle",
  "clipPath",
  // ...
  "tspan",
  "use",
  "view",
];

HTML (htmlTagNames export)

import { htmlTagNames } from "react-tag-names";

htmlTagNames: string[] List of HTML React tag names

[
  "a",
  "abbr",
  "address",
  // ...
  "video",
  "wbr",
  "webview",
];

SVG (svgTagNames export)

import { svgTagNames } from "react-tag-names";

svgTagNames: string[] List of SVG React tag names

[
  "animate",
  "circle",
  "clipPath",
  // ...
  "tspan",
  "use",
  "view",
];

Related

License

MIT © Jonas Gierer

1.0.0

5 years ago

16.9.2

5 years ago

16.9.1

5 years ago

16.8.24

5 years ago

16.8.23

5 years ago

16.8.22

5 years ago