Formant Data SDK
A library for accessing the devices in your Formant fleet.
Check out the project website for more information!
Get Started
Install using npm or yarn:
$ npm install --save @formant/data-sdk@latest @formant/realtime-sdk@latest
$ yarn add @formant/data-sdk@latest @formant/realtime-sdk@latest
License
Distributed under the MIT License. See LICENSE.txt for more information.
Deploying a new version
npm install && npm run build && npm run types
vim CHANGELOG.md
npm version X.Y.Z
git add .
git commit -m data-sdk@$(node -p "require('./package.json').version")
git tag -a release/data-sdk/$(node -p "require('./package.json').version") -m data-sdk@$(node -p "require('./package.json').version")
npm publish --tag=latest
git push --follow-tags