Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hutsoninc/gatsby-plugin-hubspot
A Gatsby plugin to easily add a HubSpot embed code to your site.
https://github.com/hutsoninc/gatsby-plugin-hubspot
gatsby gatsby-plugin hubspot
Last synced: 14 days ago
JSON representation
A Gatsby plugin to easily add a HubSpot embed code to your site.
- Host: GitHub
- URL: https://github.com/hutsoninc/gatsby-plugin-hubspot
- Owner: hutsoninc
- License: mit
- Created: 2018-08-22T19:22:42.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T20:02:10.000Z (about 1 year ago)
- Last Synced: 2024-12-19T12:02:41.261Z (22 days ago)
- Topics: gatsby, gatsby-plugin, hubspot
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/gatsby-plugin-hubspot
- Size: 830 KB
- Stars: 14
- Watchers: 3
- Forks: 16
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gatsby-plugin-hubspot
[![Current npm package version](https://img.shields.io/npm/v/gatsby-plugin-hubspot.svg)](https://www.npmjs.com/package/gatsby-plugin-hubspot)
Gatsby plugin to add a HubSpot embed code to your site.
## Installation
`npm install --save gatsby-plugin-hubspot`
## Usage
```js
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: "gatsby-plugin-hubspot",
options: {
trackingCode: "1234567",
respectDNT: false,
productionOnly: true,
},
},
],
}
```### Options
#### `respectDNT`
By enabling this option, visitors with "Do Not Track" enabled will have a `__hs_do_not_track` cookie
placed in their browser. This prevents the HubSpot tracking code from sending any information for
the visitor.More information about HubSpot cookies and privacy can be found in the
[HubSpot Tracking Code API documentation](https://developers.hubspot.com/docs/methods/tracking_code_api/tracking_code_overview).#### `productionOnly`
Only load the script when `process.env.NODE_ENV` is set to `production`.
## License
MIT © [Hutson Inc](https://www.hutsoninc.com)