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

ce-sdkifier

v0.10.1

Published

A command line utility for generating Javascript and Typescript SDKs for Cloud Elements

Downloads

6

Readme

Cloud Elements SDKifier

NPM Version NPM Downloads

A command-line tool for Cloud Elements to generate SDKs for our Platform and Element APIs. In the case of Elements, you can choose to generate the SDK based on a hub, an element, or an instance.

One major goal for this tool is to generate information for Javascript IDEs to allow them to provide autocompletion of allowable methods, parameters, and results. This tool also provides a platform for future features that may be impractical to implement in a server based API, such as automated paging, multi-level hydration, etc.

autocompletion

Installation

You must have Node.js installed in order to use this tool. Once you do, you can use npm to install the SDKifier itself.

npm install -g ce-sdkifier

You may also install the tool directly from the github repository.

git clone https://github.com/cloud-elements/ce-sdkifier.git
cd ce-sdkifier
npm install
npm link

Generating an SDK

Run sdkifier at the command line to generate the SDK library you'll be calling from your code.

  Usage: sdkifier [options] [command]

  Options:

    -V, --version  output the version number
    -h, --help     output usage information

  Commands:

    platform       creates a platform sdk
    hub            creates an sdk for a given hub
    element        creates an sdk for a given element
    instance       creates an sdk for a given instance
    help [cmd]     display help for [cmd]

This will generate both Typescript and Javascript files for you using the naming convention of <name>SDK. Even if you don't intend to use Typescript, some IDEs use it when available to provide better autocompletion behavior.

Use

The code is generated as a CommonJS module. You can require and it will produce a class constructor with same name. The constructor requires the base URL (i.e., https://api.cloud-elements.com), and an authorization header.

All methods follow a standard pattern. The name of the method uses the operationId from our OpenAPI 2.0 documentation (AKA Swagger). This is typically get, create, update, replace, or delete followed by the name of the resource. The parameters to this call will be all of the required parameters for the operation. The methods use chaining for specifying any optional parameters (see below for an example). Each method will return a Promise containing either the body of the response when successful or the response itself when it fails.

The generated methods return extended superagent instances that have the authorization header and URL already set. They are also extended to include methods for every documented optional parameter. All standard superagent methods are also supported. This allows you to provide, for example, any undocumented headers or query parameters. It also allows you to take advantage of other superagent capabilities, such as retry().

You can also get low level access to the API via the get, post, put, patch, and delete methods.

Note: You must add "superagent": "^3.8.2" to the dependencies in your package.json file.

Example

const {shopifySDK} = require('./shopifySDK')

const shopify = new shopifySDK('https://staging.cloud-elements.com', process.env.SHOPIFY_AUTH_HEADER)

async function doit() {
  const products = await
    shopify
      .getProducts()
      .where(`created_at_max='2015-01-01T00:00:00-06:00'`)
      .pageSize(3)
  for (let product of products) {
    console.log({
      name: product.handle,
      title: product.title,
      created: product.created_at
    })
  }
}

doit()
  .then(r => console.log('done'))
  .catch(r => console.log(r))