6.46.8 • Published 4 days ago

@gasket/data v6.46.8

Weekly downloads
9
License
MIT
Repository
github
Last release
4 days ago

@gasket/data

Helper package for accessing embedded Gasket Data in the browser.

Installation

npm i @gasket/data

Usage

This helper is intended for use in conjunction with Gasket Data embedded in a script tag in the HTML document.

For example, if the following data is rendered...

<script id="GasketData" type="application/json">{ "something": "interesting" }</script>

...then it would be accessible as:

import gasketData from '@gasket/data';

console.log(gasketData.something); // interesting

Adding SSR Data

To make data available for server-side rendering options, plugins should add to the res.locals.gasketData object.

For example when using the middleware lifecycle in a plugin:

module.exports = {
  hooks: {
    middleware() {
      return (req, res, next) => {
        res.locals.gasketData = res.locals.gasketData || {};
        res.locals.gasketData.example = { fake: 'data' }; 
        next();
      }
    }
  }
};

The results of res.locals.gasketData should then be rendering in a script as described above.

License

MIT

7.0.0-next.21

4 days ago

7.0.0-next.9

8 days ago

7.0.0-next.10

8 days ago

7.0.0-next.7

9 days ago

7.0.0-next.11

8 days ago

7.0.0-next.8

8 days ago

7.0.0-next.12

8 days ago

7.0.0-next.13

8 days ago

7.0.0-next.6

9 days ago

7.0.0-next.20

8 days ago

7.0.0-next.5

9 days ago

6.46.8

11 days ago

7.0.0-next.4

11 days ago

7.0.0-next.3

15 days ago

7.0.0-next.2

22 days ago

7.0.0-next.1

23 days ago

7.0.0-next.0

23 days ago

6.46.7

1 month ago

7.0.0-cli.7

2 months ago

7.0.0-cli.6

2 months ago

6.46.1-cli.0

2 months ago

7.0.0-cli.5

2 months ago

7.0.0-cli.4

2 months ago

7.0.0-cli.1

2 months ago

7.0.0-cli.0

2 months ago

7.0.0-cli.3

2 months ago

7.0.0-cli.2

2 months ago

7.0.0-canary.1

2 months ago

6.45.2

3 months ago

6.45.0

4 months ago

6.41.1

8 months ago

6.42.0-canary.1

8 months ago

6.42.0-canary.2

8 months ago

6.42.0-canary.0

8 months ago

6.39.0

12 months ago

6.36.1

1 year ago

6.37.0

1 year ago

6.38.1

1 year ago

6.34.6

2 years ago

6.34.3

2 years ago

6.34.4

2 years ago

6.21.0

2 years ago

6.24.0

2 years ago

6.20.2

2 years ago

6.10.1

2 years ago

6.10.0

2 years ago

6.14.0

2 years ago

6.17.0

2 years ago

6.0.12

3 years ago

6.0.0

3 years ago

6.0.0-canary.13

3 years ago

6.0.0-canary.8

3 years ago

6.0.0-canary.2

4 years ago