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

@shapediver/sdk.platform-api-sdk-v1

v2.27.1

Published

SDK to communicate with the Platform API version 1

Downloads

314

Readme

ShapeDiver Platform SDK

ShapeDiver is a cloud platform that provides the right tools and scalable infrastructure to help you transform your Grasshopper files into online applications. It allows you to share the power of Grasshopper and Parametric Design with partners, clients and other key stakeholders wherever they are.

The ShapeDiver Platform SDK allows to access the functionality of the ShapeDiver Platform (or white labelled instances of it) by means of the ShapeDiver Platform API. The SDK exposes all TypeScript-types describing request and response objects.

The authentication system is based on JWT tokens, which the SDK allows you to request from the ShapeDiver Platform using the OAuth 2.0 functionality integrated with the ShapeDiver Platform API.

Usage

  • Add npm package:

    npm i @shapediver/sdk.platform-api-sdk-v1
  • Import constructor function:

    import { create } from '@shapediver/sdk.platform-api-sdk-v1';
  • Create and authorize client:

    const client = create({clientId: "CLIENT_ID", baseUrl: "SHAPEDIVER_PLATFORM_API_ENDPOINT"});
    await client.authorization.passwordGrant("USERNAME OR ACCESS KEY ID", "PASSWORD OR ACCESS KEY SECRET");

Whenever possible do not use your username and password for usage of the SDK. Instead log in to the ShapeDiver Platform and create an access key pair, consisting of an

  • access key id (to be used instead of your username), and an
  • access key secret (to be used instead of your password).

Using access keys allows you to keep your application secure, because access keys

  • can be limited in scope (e.g. they can be limited to be read only)
  • can easily be revoked at any time
  • can be time limited.

Versioning

We take care to provide backwards compatibility for older versions of the SDK and the API, but might introduce breaking changes in case of major version upgrades. New features of the SDK might be limited to newer versions of the API. We recommend always using the newest SDK version out there.

Support

If you have further questions, reach out to us.

Find out more about ShapeDiver right here!

Licensing

The ShapeDiver Platform SDK is released under the MIT License.