Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md - github.com/gohugoio/hugo-mod-jslibs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83bf4fb515c714fd9e94ceaf9d9c5cdd86094f6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Hugo JS Libraries

A small collection of JS libraries that works well with Hugo, packaged and ready for use as Hugo Modules. 

Hugo has great support for [JavaScript building](https://gohugo.io/hugo-pipes/js/), but these libraries stand solid on their own and you don't need `npm` to use them. It's similar to including the libraries from CDN, but you get the added benefit of:

* Offline use.
* They are aware of the Hugo life cycle (minify, fingerprint, add integrity hash only when in production).
* The dependencies can be vendored (`hugo mod vendor`) to make your site truly standalone.
* ...

To use AlpineJS with Turbolinks you can just import the modules into your config and then add this to your `head`

```
{{ partialCached "jslibs/alpinejs/script-src.html" "-" }}
{{ partialCached "jslibs/turbolinks/script-src.html" "-" }}
```

See each component's README for usage.

## Versioning

These modules have their own semver versioning scheme that does not match the upstream library they wrap. To see the current upstream versions, use:

```bash
hugo mod graph
```

To update one module:

```
hugo mod get -u github.com/gohugoio/hugo-mod-jslibs/instantpage
```

To update all:

```
hugo mod get -u
```

The Hugo documentation has more information about [Hugo Modules](https://gohugo.io/hugo-modules/), how versioning works etc.