1.1.3 • Published 1 month ago

alpinejs-head v1.1.3

Weekly downloads
-
License
MIT
Repository
-
Last release
1 month ago

Alpine JS Head

Manage the HTML <head> with Alpine JS 👷‍♀️

Install

With a CDN

<script
  defer
  src="https://unpkg.com/alpinejs-head@latest/dist/head.min.js"
></script>

<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>

With a Package Manager

npm i -D alpinejs-head

yarn add -D alpinejs-head
import Alpine from 'alpinejs'
import head from 'alpinejs-head'

Alpine.plugin(head)

Alpine.start()

Examples

JSON

You can use x-head.json to set the initial dynamic values.

<script x-data x-head.json type="application/json">
  {
    "title": "Hello World 👋",
    "meta": [
      {
        "name": "description",
        "content": "How are you today?"
      },
      {
        "name": "theme-color",
        "content": "#000"
      }
    ],
    "links": [
      {
        "type": "rel",
        "href": "popup.css"
      }
    ],
    "scripts": [
      {
        "src": "popup.js",
        "async": true
      }
    ]
  }
</script>

Only with x-head.json can you set <link> and <script> elements.

Directives

<div
  x-data="{ title: 'Hello World 👋', description: 'How are you today?' }"
  x-head.title="title"
  x-head.meta.description="description"
>
  <input type="text" x-model="title" />

  <textarea x-model="description"></textarea>
</div>

x-head will track track the data of title and description and update the HTML <head> elements targeted through the modifiers.

Here's an example of you can set the theme-color:

<div x-data="{ theme: '#000' }" x-head.meta.theme-color="theme"> </div>

Method

<button x-data @click="$head('title', 'Hello World 👋')"> Title </button>

<button x-data @click="$head('meta.description', 'How are you today?')">
  Description
</button>

Stats

npm.io npm.io npm.io npm.io

1.1.3

1 month ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.6

1 year ago

1.1.2

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago