KO
|
EN
gitlite — search
Search
#python
#docker
#golang
#python3
#deep-learning
#javascript
#flutter
#kotlin
#android
#pytorch
#nodejs
#api
codechain-sdk-js
★ 26
Open GitHub ↗
CodeChain JavaScript SDK
Download README (.md)
Explore Similar Repositories
CodeChain
:
Official code for the paper "CodeChain: Towards Modular Code Generation Through Chain of Self-revisions with Representative Sub-modules"
codechain-indexer
:
A blockchain data indexing tool for CodeChain
codechain-web-wallet
:
CodeChain Web Wallet
codechain-faucet
:
CodeChain testnet faucet
codechain-keystore-cli
:
A command line key management tool for CodeChain
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
codechain-sdk-js
?
Download (.md)
CodeChain SDK for JavaScript [](https://badge.fury.io/js/codechain-sdk) [](https://travis-ci.org/CodeChain-io/codechain-sdk-js) [](https://gitter.im/CodeChain-io/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) ============== A JavaScript SDK for CodeChain ## API Documentation (For SDK users) If you're looking for an API documentation or a quick start guide, [click here](https://api.codechain.io/) ## Features * Connect to a [CodeChain JSON-RPC](https://github.com/CodeChain-io/codechain/blob/master/spec/JSON-RPC.md) server * Generate an account, create a transacton, sign a transaction ## Getting Started (For SDK developers) ### Clone the source code ``` git clone git@github.com:CodeChain-io/codechain-sdk-js.git ``` ### Install dependencies ``` cd codechain-sdk-js && npm install ``` ### Running unit tests ``` npm run test ``` ### Building and running integration tests 1. Run `yarn build` command. 1. Run CodeChain RPC server. 1. Run `yarn test-int` command. > It is also possible to indicate specific testcases with --`testRegex` and `-t` option. (e.g. `yarn test-int --testRegex Rpc -t getBestBlockNumber`)