https://github.com/resemble-ai/resemble-node
resemble.ai API SDK
https://github.com/resemble-ai/resemble-node
Last synced: 11 days ago
JSON representation
resemble.ai API SDK
- Host: GitHub
- URL: https://github.com/resemble-ai/resemble-node
- Owner: resemble-ai
- License: mit
- Created: 2021-08-19T16:24:38.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-29T22:15:11.000Z (6 months ago)
- Last Synced: 2024-11-29T23:21:53.696Z (6 months ago)
- Language: TypeScript
- Homepage: https://resemble.ai
- Size: 1.03 MB
- Stars: 9
- Watchers: 3
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# resemble.ai API
[resemble.ai](https://resemble.ai) is a state-of-the-art natural voice cloning and synthesis provider. Best of all, the platform is accessible by using our public API! Sign up [here](https://app.resemble.ai) to get an API token!
This repository hosts a NodeJS library for convenient usage of the [Resemble API](https://docs.resemble.ai).
## Quick Start
```sh
npm install @resemble/node
# or
yarn add @resemble/node
```See documentation at [docs.resemble.ai](docs.resemble.ai).
## Features
- Typescript definitions
- Works with NodeJS, Deno, and the browser!
- Supports the V2 API## Test!
```
npm run test
```## Publishing
1. `git status`: Make sure your working directory has no pending changes.
2. Update the version key in `package.json`
3. `git commit`: Commit this version change.
4. Publish to npmjs.org:```sh
npm run build
npm publish
```