https://github.com/isamrish/gatsby-plugin-agilecrm
A Gatsby plugin to easily add a AgileCRM tracking code to your gatsby site
https://github.com/isamrish/gatsby-plugin-agilecrm
agile-crm agilecrm crm gatsby gatsby-plugin-agilecrm
Last synced: 28 days ago
JSON representation
A Gatsby plugin to easily add a AgileCRM tracking code to your gatsby site
- Host: GitHub
- URL: https://github.com/isamrish/gatsby-plugin-agilecrm
- Owner: isamrish
- License: mit
- Created: 2019-06-13T06:59:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T00:53:22.000Z (over 3 years ago)
- Last Synced: 2025-06-02T08:47:40.284Z (about 1 year ago)
- Topics: agile-crm, agilecrm, crm, gatsby, gatsby-plugin-agilecrm
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/gatsby-plugin-agilecrm
- Size: 760 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gatsby-plugin-agilecrm
[](https://travis-ci.org/IsAmrish/gatsby-plugin-agilecrm) [](https://badge.fury.io/js/gatsby-plugin-agilecrm)
A Gatsby Plugin to easily add a AgileCRM embed code to your site
## Installing
`npm install --save gatsby-plugin-agilecrm`
## How to use
```js
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: "gatsby-plugin-agilecrm",
options: {
jsAPIKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxx",
agilecrmOrgName: "orgName"
}
}
]
};
```
### Options
#### jsAPIKey
Type: `string`
You need to provide javascript api key of your AgileCRM org which you can find in your setting.
More information about javascript api key can be found in the [AgileCRM javascript api](https://github.com/agilecrm/javascript-api#setting-api--analytics).
#### agilecrmOrgName
Type: `string`
You need to provide your agilecrmOrgName which you can find in your agilecrm org url.
For example, if your agilecrm org url is `https://abc-xyz.agilecrm.com` then your
agilecrmOrgName is `abc-xyz`.
## License
MIT © [Amrish Kushwaha](https://github.com/IsAmrish)