# ccer-sdk

> ccer sdk

Latest version **2.1.5** (published 2022-07-12) · ISC license · 0 weekly downloads

## Install

```sh
npm install ccer-sdk
pnpm add ccer-sdk
yarn add ccer-sdk
bun add ccer-sdk
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.1.5 |
| Published | 2022-07-12 |
| First published | 2022-06-17 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 12 |
| Unpacked size | 162.8 KB |
| Known vulnerabilities | 0 (+13 in 3 direct dependencies) |
| Install scripts | no |
| Author | blove |
| Maintainers | xiazheng |
| Keywords | ccer, ccer-sdk |

## Links

- npm: https://www.npmjs.com/package/ccer-sdk
- Repository: https://github.com/ccerproject/ccer-sdk-nodejs
- Issues: https://github.com/ccerproject/ccer-sdk-nodejs/issues
- npm.io page: https://npm.io/package/ccer-sdk

## Dependencies (12)

- [long](https://npm.io/package/long.md) ^4.0.0
- [humps](https://npm.io/package/humps.md) ^2.0.1
- [request](https://npm.io/package/request.md) ^2.87.0
- [is-type-of](https://npm.io/package/is-type-of.md) ^1.2.0
- [protobufjs](https://npm.io/package/protobufjs.md) ^6.8.8
- [co-wrap-all](https://npm.io/package/co-wrap-all.md) ^1.0.0
- [json-bigint](https://npm.io/package/json-bigint.md) ^0.2.3
- [bignumber.js](https://npm.io/package/bignumber.js.md) ^7.2.1
- [request-promise](https://npm.io/package/request-promise.md) ^4.2.2
- [phcer-encryption](https://npm.io/package/phcer-encryption.md) ^1.0.4
- [merge-descriptors](https://npm.io/package/merge-descriptors.md) ^1.0.1
- [buffer-to-uint8array](https://npm.io/package/buffer-to-uint8array.md) ^1.1.0

## Recent versions

- 2.1.5 (latest) — 2022-07-12
- 2.1.4 — 2022-07-08
- 2.1.3 — 2022-07-08
- 2.1.2 — 2022-07-06
- 2.1.1 — 2022-06-17

## README

ccer-sdk-nodejs
=======

Let developers can all use ccer blockchain services more easily.


## Installation

This is a [Node.js](https://nodejs.org/en/) module available through the
[npm registry](https://www.npmjs.com/).

Before installing, [download and install Node.js](https://nodejs.org/en/download/).
Node.js 6.0.0 or higher is required.

Installation is done using the
[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):

```bash
$ npm install ccer-sdk --save
```


## Quick Start

  Create ccer-sdk instance:

```js
'use strict';

const ccerSDK = require('ccer-sdk');

const sdk = new ccerSDK({
  host: 'seed1.ccertest.io:26002',
});

```

  Usage:

```js
// Create account
sdk.account.create().then(data => {
  console.log(data);
}).catch(err => {
  console.log(err.message);
});

```


## Tests

  To run the test suite, first install the dependencies, then run `npm test`:

```bash
$ npm install
$ npm test
```

## Docs

  * [Documentation](doc/SDK_CN.md)

## License

  [MIT](LICENSE)

---
_Source: https://npm.io/package/ccer-sdk · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
