html-link-types
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

html-link-types

Build Downloads Size

List of link types as specified by HTML.

Contents

What is this?

This package lists values that are allowed in rel attributes on <a>, <area>, <form>, or <link> elements. These values come from mdn.

When should I use this?

Use this package if you specifically need to check which values are allowed in by the HTML spec in rel attributes on <a>, <area>, <form>, and <link> elements. See link-rel for a list of MicroFormats extensions to <link>, and a-rel for a list of MicroFormats extensions on <a> and <area> elements.

Install

This package is ESM only. In Node.js (version 12.20+, 14.14+, or 16.0+), install with npm:

npm install html-link-types

In Deno with Skypack:

import {htmlLinkTypes} from 'https://cdn.skypack.dev/html-link-types@2?dts'

In browsers with Skypack:

<script type="module">
  import {htmlLinkTypes} from 'https://cdn.skypack.dev/html-link-types@2?min'
</script>

Use

import {htmlLinkTypes} from 'html-link-types'

console.log(htmlLinkTypes)

Yields:

[ 'alternate',
  'archives',
  'author',
  'bookmark',
  'dns-prefetch',
  'external',
  'first',
  'help',
  'icon',
  'index',
  'last',
  'license',
  'manifest',
  'next',
  'nofollow',
  'noopener',
  'noreferrer',
  'pingback',
  'preconnect',
  'prefetch',
  'preload',
  'prerender',
  'prev',
  'search',
  'sidebar',
  'stylesheet',
  'tag',
  'up' ]

API

This package exports the following identifiers: htmlLinkTypes. There is no default export.

htmlLinkTypes

List of lowercase types (Array<string>).

Types

This package is fully typed with TypeScript. There are no extra exported types.

Compatibility

This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 14.14+, and 16.0+. It also works in Deno and modern browsers.

Security

This package is safe.

Related

Contribute

Yes please! See How to Contribute to Open Source.

License

MIT © Titus Wormer

Readme

Keywords

Package Sidebar

Install

npm i html-link-types

Weekly Downloads

5

Version

2.0.1

License

MIT

Unpacked Size

8.23 kB

Total Files

5

Last publish

Collaborators

  • wooorm