0.1.4 • Published 1 year ago
dewy_ts v0.1.4
Typescript/Javascript Dewy SDK
Installing
- Install the library
npm install dewy_ts
- Connect to a Dewy instance
import { Dewy } from 'dewy_ts';
const dewy = new Dewy({endpoint: “localhost:3000”})
For more information about how to use Dewy, see the README in the main repo.
Cutting a new release
- Setup development environment
npm install
- Run the Dewy service
docker run dewykb/dewy
- Regenerate the client library
npm run generate-client
- Recompile Typescript
rm -rf dist && npx tsc
Publish to npm (You probably want to bump the version number in
package.json
first)npm publish --access public