/talentlayer-sdk

Primary LanguageTypeScriptApache License 2.0Apache-2.0

Talent Layer SDK

The Talent Layer sdk enables you to interact with the TalentLayer protocol.

Getting Started

To get started with the SDK and how to create a client read the doc here: click here 🦝

Build the package on your own

The SDK is not yet published on NPM since it is still under development.

  1. clone the repo

git@github.com:TalentLayer/talentlayer-sdk.git

  1. navigate into the client

cd packages/client

  1. switch to node version 18

nvm use 18

  1. install all dependencies

npm install

  1. prepare the sdk for usage

npm run prepare

  1. link the sdk so it can be used as a node_module

npm link

  1. now the sdk-client is available as @TalentLayer/client

  2. cd into your own node project

cd my-project

  1. link the package

npm link @TalentLayer/client

  1. now you should be able to use the SDK