npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@weareenvoy/gatsby-source-eppcm

v1.0.5

Published

A minimal source plugin for Elastic Path Product Content Management (PCM) products.

Downloads

2

Readme

Elastic Path Source Plugin

A minimal source plugin for Elastic Path Commerce Cloud Product Content Management (PCM) services API.

The current gatsby-source-moltin seems to only support the Elastic Path legacy API.

Built from gatsby-starter-plugin


Background

Important: This currently (as of 4/12/2022) includes sourcing Elastic Path PCM Products only. Other resource types may be added in the future.

Usage

  1. Install npm package.
npm i @weareenvoy/gatsby-source-eppcm
  1. Update the gatsby-config.js of your gatsby project (where this plugin will be used) and include the plugin in the plugins array.:
cd path-to-some-gatsby-project
module.exports = {
  plugins: [
    // other gatsby plugins
    // ...
    {
			resolve: '@weareenvoy/gatsby-source-eppcm',
			options: {
				api_base_url: process.env.EP_API_BASE_URL,
				client_id: process.env.EP_CLIENT_ID,
				client_secret: process.env.EP_CLIENT_SECRET,
				grant_type: process.env.EP_GRANT_TYPE,
				catalog_id: process.env.EP_CATALOG_ID,
				draft_products: false,
				rate_limit_interval: 2000, // Optional
				rate_limit_tokens_per_interval: 25 // Optional
			},
		},
  ],
}

Sample .env file

EP_API_BASE_URL="https://useast.api.elasticpath.com"
EP_CLIENT_ID="XXX"
EP_CLIENT_SECRET="XXX"
EP_GRANT_TYPE="client_credentials"
EP_CATALOG_ID="XXX"
  1. Verify the plugin was added correctly

You can verify your plugin was added to your site correctly by running gatsby develop for the site.

You should now see a message logged to the console in the preinit phase of the Gatsby build process:

$ gatsby develop
...
Loaded gatsby-source-eppcm
...
BUILDING NODES FOR (X) PCM PRODUCTS!
...

If the above was successful you will also see allEpProduct in GraphiQL at http://localhost:8000/___graphql

Contributing

You may point your GatsbyJS project to a local copy of this plugin and test your updates. The usage is the same as described above with the difference of pointing to your local copy within your gatsby-config.js file.

  1. Clone (or download) the repo and install npm packages.
git clone [email protected]:weareenvoy/gatsby-source-eppcm.git
cd gatsby-source-eppcm
npm install
  1. Go to the project that will use this plugin and update gatsby-config.js to point to your local copy of the plugin. Notice the line require.resolve('<path-to>/gatsby-source-eppcm') where you specify the path to the plugin root folder:
module.exports = {
  plugins: [
    // other gatsby plugins
    // ...
    {
			resolve: require.resolve(`../gatsby-source-eppcm`),
			options: {
				api_base_url: process.env.EP_API_BASE_URL,
				client_id: process.env.EP_CLIENT_ID,
				client_secret: process.env.EP_CLIENT_SECRET,
				grant_type: process.env.EP_GRANT_TYPE,
				catalog_id: process.env.EP_CATALOG_ID,
				draft_products: false,
				rate_limit_interval: 2000, // Optional
				rate_limit_tokens_per_interval: 25 // Optional
			},
		},
  ],
}

Make sure you have the required .env variables as described in the Usage section.

Directory Structure

The main files being used are as follows:

gatsby-node.js Implements Gatsby sourceNodes API and calls functions in the next file, which handles the API calls.

ep-api.js Makes REST calls to Elastic Path Commerce Cloud using the config data set in the pluginOptions.

rateLimiterUtil.js Utility functions used to execute rate limited API calls.

util.js General utility helpers.

Testing your contributions

Since it's cumbersome to have to include this plugin in another project in order to see if your updates worked, the below file has been added so you can run some of your functions local to this project via node.

test.js Add any calls and functions that you can use to test new features. Then from this projects root run:

node test.js

Note: You will have to add an .env file to this projects root with the relevant values since there will not be any pluginOptions.