2.14.0 • Published 7 months ago

gatsby-script v2.14.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

gatsby-script

An enhanced script component for Gatsby sites with support for various loading strategies.

Current usage looks like this (may change while in development):

import * as React from "react"
import { Script, ScriptStrategy } from "gatsby-script" // or 'gatsby', or 'gatsby/script', TBD

// Example script sources for illustration
const scripts = {
  dayjs: `https://unpkg.com/browse/dayjs@1.11.0/dayjs.min.js`,
  three: `https://unpkg.com/three@0.139.1/build/three.js`,
  marked: `https://cdn.jsdelivr.net/npm/marked/marked.min.js`,
}

// Strategy prop is optional, defaults to post-hydrate
function IndexPage() {
  return (
    <main>
      <h1>Script component proof of concept</h1>
      <Script src={scripts.dayjs} strategy={ScriptStrategy.preHydrate} />
      <Script src={scripts.three} strategy={ScriptStrategy.postHydrate} />
      <Script src={scripts.marked} strategy={ScriptStrategy.idle} />
      <Script dangerouslySetInnerHTML={{ __html: `alert('Hello world')` }} />
      <Script>{`alert('Hello world')`}</Script>
    </main>
  )
}

export default IndexPage
2.15.0-next.0

7 months ago

2.14.0

7 months ago

2.14.0-next.1

1 year ago

2.13.0

1 year ago

2.14.0-next.0

1 year ago

2.12.0

2 years ago

2.11.0

2 years ago

2.12.0-next.1

2 years ago

2.12.0-next.0

2 years ago

2.10.0

2 years ago

2.13.0-next.0

2 years ago

2.11.0-next.0

2 years ago

2.11.0-next.1

2 years ago

2.10.0-next.0

2 years ago

2.10.0-next.1

2 years ago

2.9.0

2 years ago

2.8.0

2 years ago

2.8.0-next.0

2 years ago

2.7.0

2 years ago

2.9.0-next.0

2 years ago

2.9.0-next.1

2 years ago

2.4.0

2 years ago

2.6.0

2 years ago

2.6.0-next.0

2 years ago

2.7.0-next.0

2 years ago

2.5.0

2 years ago

2.5.0-next.0

2 years ago

2.2.0

3 years ago

2.0.0-next.0

3 years ago

2.0.0-next.1

3 years ago

2.0.0

3 years ago

2.1.0-next.0

3 years ago

2.4.0-next.0

3 years ago

2.2.0-next.0

3 years ago

2.2.0-next.1

3 years ago

2.3.0

3 years ago

2.3.0-next.1

3 years ago

2.3.0-next.2

3 years ago

2.3.0-next.0

3 years ago

2.1.0

3 years ago

1.10.0

3 years ago

1.8.0

3 years ago

1.10.0-next.0

3 years ago

1.9.0-next.2

3 years ago

1.9.0-next.1

3 years ago

1.9.0-next.0

3 years ago

1.9.0

3 years ago

1.7.0

3 years ago

1.8.0-next.0

3 years ago

1.8.0-next.1

3 years ago

1.7.0-next.0

3 years ago

1.2.0

3 years ago

1.7.0-next.1

3 years ago

1.1.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

1.4.0-next.1

3 years ago

1.4.0-next.2

3 years ago

1.4.0-next.0

3 years ago

1.6.0

3 years ago

1.5.0

3 years ago

1.4.0

3 years ago

1.3.0

3 years ago

1.5.0-next.0

3 years ago

1.2.0-next.0

3 years ago

1.3.0-next.0

3 years ago

1.6.0-next.1

3 years ago

1.3.0-next.1

3 years ago

1.6.0-next.0

3 years ago

1.1.0-next.1

3 years ago

1.1.0-next.0

3 years ago

1.0.0-next.1

3 years ago

1.0.0-next.2

3 years ago

1.0.0-next.3

3 years ago

1.0.0-next.0

3 years ago