No description
Find a file
2021-06-13 00:23:14 +01:00
coverage feat: initial commit 2021-06-13 00:02:06 +01:00
examples fix: examples/web is not a submodule 2021-06-13 00:23:14 +01:00
src feat: initial commit 2021-06-13 00:02:06 +01:00
test feat: initial commit 2021-06-13 00:02:06 +01:00
.gitignore feat: initial commit 2021-06-13 00:02:06 +01:00
babel.config.js feat: initial commit 2021-06-13 00:02:06 +01:00
jest.config.ts feat: initial commit 2021-06-13 00:02:06 +01:00
package.json feat: initial commit 2021-06-13 00:02:06 +01:00
prettier.config.js feat: initial commit 2021-06-13 00:02:06 +01:00
README.md feat: initial commit 2021-06-13 00:02:06 +01:00
tsconfig.json feat: initial commit 2021-06-13 00:02:06 +01:00
yarn.lock feat: initial commit 2021-06-13 00:02:06 +01:00

ccash-client-js

TypeScript/JavaScript client library for CCash HTTP API.

Installation

yarn add ccash-client-js
# or
npm install ccash-client-js

Usage

import { CCashClient } from 'ccash-client-js';

const client = new CCashClient();

client.balance('twix');

Examples

Run yarn start to run the examples from their corresponding directory.

Development

  • Build for production: yarn build

  • Build and watch for development: yarn dev

  • Format source code w/ prettier: yarn format

  • Test source units w/ jest: yarn test

TODO

  • Start/finish client implementation

  • Add CI/CD

  • Publish to npm