Paperspace SDK for client-side browser environments
The module is published as a node_module under the same name @paperspace/client-sdk
on NPM. You can install it like so:
$ yarn add @paperspace/client-sdk
This will run the build and serve an example page with some examples on it:
$ yarn
$ yarn start
If you are developing this repository in conjunction with another or just want to test it as you develop, you can preferrably run the development build, which gives you a version that is easier to debug:
$ yarn
$ yarn build:dev
If you are looking to try out the production build, you can run the production build like this:
$ yarn
$ yarn build:prod
You can set the host the client points to by running it with the following environment variable:
$ STREAM_HOST=http://localhost:3002 yarn start
If you are developing this repository in conjunction with another, you can yarn link
your local version of the @paperspace/client-sdk into the host repository:
$ yarn link # In a separate terminal window from your (development) build
After this, you want to run yarn link @paperspace/client-sdk
in the host repository to activate it.
NB: Remember to yarn unlink @paperspace/client-sdk
in the host repository and yarn unlink
in the root of this repository when you are done developing client-sdk! This link will otherwise stay active, even if you switch branches or pull changes.
NBB: Yarn does not work very well with passphrase prompts - it basically ignores them - so if you use that for you ssh-key, please use ssh-add
to remember your authentication for the given session.
This repository is set up to publish a new version on a new tag. To publish a new version follow these steps, where X.Y.Z
is the new version you are about to publish:
Pro-tip: use --patch
, --minor
or --major
flags for yarn version
to automatically increment the version. You can also use a pre-release version before you release an actual version change.
$ git pull --rebase
$ git checkout -b release_vX.Y.Z
$ yarn version # This will create a tag, run `preversion` and `postversion` scripts and push the tag to remote
info Current version: 1.0.0
question New version: X.Y.Z # Do not prefix with 'v'!
...
✨ Successfully released version vX.Y.Z! The tag build process will publish it ✨
CircleCI will pick up on the newly created tag and automatically publish the version.
Now push your branch to remote and create a PR to see the status of the publish build and get your version change merged back into development:
$ git push --set-upstream origin release_vX.Y.Z
$ open https://github.com/Paperspace/client-sdk/compare/release_vX.Y.Z
That's it! You can now install this module with either yarn add @paperspace/client-sdk@latest
or yarn add @paperspace/client-sdk@X.Y.Z
.
NB: Even if the version number is lower than a previously released version, it will be installed as the latest version!
NBB: You cannot publish over an existing version. The best way to handle this situation is to release a new patch or minor version.