# gatsby-source-abucms

> GatsbyJS source plugin for AbuCMS

Latest version **0.1.3** (published 2021-04-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install gatsby-source-abucms
pnpm add gatsby-source-abucms
yarn add gatsby-source-abucms
bun add gatsby-source-abucms
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2021-04-22 |
| First published | 2021-04-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 27.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Ian Dela Cruz |
| Maintainers | ianpogi5 |
| Keywords | headleass, serverless, cms, abucms, gatsby, gatsby-plugin |

## Links

- npm: https://www.npmjs.com/package/gatsby-source-abucms
- npm.io page: https://npm.io/package/gatsby-source-abucms

## Dependencies (4)

- [got](https://npm.io/package/got.md) ^11.8.2
- [node-fetch](https://npm.io/package/node-fetch.md) ^2.6.1
- [@babel/runtime](https://npm.io/package/@babel/runtime.md) ^7.13.10
- [gatsby-source-filesystem](https://npm.io/package/gatsby-source-filesystem.md) ^3.3.0

## Recent versions

- 0.1.3 (latest) — 2021-04-22
- 0.1.2 — 2021-04-22
- 0.1.1 — 2021-04-22
- 0.1.0 — 2021-04-21

## README

# gatsby-source-abucms

Source plugin for pulling data from [AbuCMS](https://github.com/kdcio/abu) into [GatsbyJS](https://www.gatsbyjs.com/). It creates links between models and asset so they can be queried in Gatsby using GraphQL.

:warning: This plugin only works on Gatsby v3+.

## Install

```bash
npm install gatsby-source-abucms
```

## Configuration

```js
// gatsby-config.js
module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-abucms`,
      options: {
        baseUrl: "https://xxxxxxxx.execute-api.us-east-1.amazonaws.com",
        apiBase: "prod", // deployemnt stage
        models: ["blog", "home_page", "about_page", "social_profile"], // modelId
        apiKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
        useCache: false, // default is true. set to false if you want to debug.
      },
    },
  ],
};
```

## Example

[Gatsby's blog starter with AbuCMS](https://github.com/kdcio/gatsby-starter-blog-abucms)

---
_Source: https://npm.io/package/gatsby-source-abucms · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
