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

@sage-bionetworks/synapse-client

v0.0.1

Published

This package generates TypeScript/JavaScript models and API clients for [Synapse](https://www.synapse.org/), a collaborative, open-source research platform that allows teams to share data, track analyses, and collaborate.

Downloads

101

Readme

synapse-client

This package generates TypeScript/JavaScript models and API clients for Synapse, a collaborative, open-source research platform that allows teams to share data, track analyses, and collaborate.

To generate code, we use the Synapse REST Services OpenAPI Definition and the OpenAPI Generator. This package will also maintain wrappers, utility classes, and configuration used to improve developer experience.

Generating code

To generate code for the models and services, simply run pnpm nx run @sage-bionetworks/synapse-client:build. This will trigger the OpenAPI Generator CLI and also run any scripts that may be needed to improve code generation.

Upgrading the OpenAPI definition

At this time, the only published versions of the Synapse OpenAPI definition are for the current production stack, and for the staging stack. The staging stack typically elevated to production the following week. We commit a stable copy of the OpenAPI definition to version control to ensure our generated code is consistent and does not cause unexpected regressions as the OpenAPI definition changes.

To update the OpenAPI definition, run pnpm get-spec to get the latest production OpenAPI definition, which will be saved in ./src/spec/openapispecification.json. You can also run pnpm get-spec:staging to get the OpenAPI definition associated with the current staging release. After retrieving the specification, you will once again need to run pnpm build. Once you have new models built, tests and type-checking on the full project should be run to ensure the new spec does not introduce errors. Our CI process will catch this automatically.

Upgrading the openapi-generator version and overriding templates

The current version of openapi-generator can be set by changing the version number set in the pnpm configure script. When the version is changed, our template overrides should be updated.

To copy all the base template files into the ./out directory, run the following command:

npx openapi-generator-cli author template -g typescript-fetch

Any template files that do not need to be modified or overridden can be deleted. Existing template customizations must then be re-implemented in the new templates. The complexity of this task depends on how drastically the templates have changed upstream. For this reason, we should limit the changes we make to templates, and clearly indicate the change and its impact.

We also maintain tests that verify that any custom changes we make to the templates function as expected, which should pass after each upgrade.