Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

contentful-config

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contentful-config

Fetching JSON from Contentful to use the same configs across multiple projects and repositories.

  • 0.6.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

contentful-config

Fetching JSON from Contentful to use the same configs across multiple projects and repositories.

Installation

Install using npm as devDependency.

$ npm install contentful-config --save-dev

Add a command to the scripts of package.json.

  "scripts": {
    "serve": "npm run config"
    "config": "contentful-config"
  },

Configuration

.env

Environment variables are automatically loaded by creating .env in the same directory as package.json. You can also use an existing environment variable without using .env.

CONTENTFUL_SPACE_ID=up61khjnndzm
CONTENTFUL_ACCESS_TOKEN=FeBoFnhmElUGRC76v-2T6DxOHhhhhg9FyiwWVxVs148
CONTENTFUL_CONFIG_ENV=local

You can also apply parameters when command execution without creating .env.

.cntconfigrc.json

Create a file as .cntconfigrc.json as in the following code:

{
  "local": {
    "dir": "./configs",
    "models": [
      {
        "name": "env",
        "options": {
          "order": "fields.type",
          "fields.type": "local"
        },
        "specificField": "json",
        "firstOnly": true,
        "filterUseFields": [
          "contentful.endpoint"
        ]
      },
      {
        "name": "resources",
        "options": {
          "order": "fields.type"
        }
      }
    ]
  },
  "dev": {
    "dir": "./configs",
    "models": [
      {
        "name": "env",
        "options": {
          "order": "fields.type",
          "fields.type": "dev"
        },
        "specificField": "json",
        "firstOnly": true
      }
    ]
  }
}

| Parameter | Description | Default | | ---- | ---- | ---- | --- | | * | The environment specified by the command execution or environment variable is selected. | '' | | *.dir | Destination of the config file. | '' | | *.models | Contentful models objects. | | | *.models.name | Output Contentful model name. This model name will be the file name. | | | *.models.options | See search-parameters in Contentful's getEntries. https://www.contentful.com/developers/docs/references/content-delivery-api/#/reference/search-parameters/links-to-asset | {} | | *.models.specificField | Specify this if you want data only for fields in the model. | '' | | *.models.firstOnly | Fetch only a single from an array. (it becomes an object type) | false | | *.models.filterUseFields | Fetch only the specified parameters from the objects in the array after specificField parameter. | undefind |

.gitignore

Add the destination directory of the config file to .gitignore.

configs/

Usage

Execute the following command in the same directory as the configuration file.

Execute with environment variables

$ npm run config

Execute without environment variables

$ npm run config -- dev --spaceId up61khjnndzm --accessToken FeBoFnhmElUGRC76v-2T6DxOHhhhhg9FyiwWVxVs148

Development Status

See tasks on Github Projects

Tests

  1. Create a model and data for Contentful with reference to /tests/.cntconfigrc.json.
  2. Create .env file insted of your Contentful's space id and access token in /tests/.
  3. Run following command in / npm install && npm run test

License

MIT

FAQs

Package last updated on 13 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc