Giter VIP home page Giter VIP logo

robin's Introduction

中文文档看这里

OVERVIEW

A world class development environment, testing framework and asset pipeline for blockchains using the ULTRAIN Chain, aiming to make life as a developer easier. With Robin, you get:

  • One-click contract compilation and development.
  • Automated contract testing for rapid development.
  • Friendly code Review and automated error fixing.
  • Lots of contract templates for reference.
  • Scriptable, extensible deployment & migrations framework.
  • Network management for deploying to any number of public & private networks.
  • Interactive console for direct contract communication.

INSTALLATION

sudo npm install -g robin-framework

Requirements

NodeJS 8.0+.

Linux、MacOSX、Windows

CREATING A PROJECT

To view all Robin commands, you need to run robin or robin -h.

To start a contract, you need create a new empty directory first, and then entry the directory:

mkdir testing
cd testing

And then initialize a project. Using -c or --contract to specify a name. Now you have some templates to choose, the first one is contract only, and the others are DAPP framework with ui.

robin init

Contract Project structure:

```
|--build        // built WebAssembly targets
|--contract     // contract source files
|--migrations   // assign built files location and account who will deploy the contract
|--templates    // some contract templates that will guide you
|--test         // test files 
|--config.js    // configuration
...
```

LINT CONTRACTS

With the help of robin-lint, a customized tslint project, you will be find errors and warnings and then fix them quickly. Just entry into the root directory of your contract project and execute:

robin lint

COMPILE CONTRACTS

Depend on the compiling tool ultrascript,smart contract will be compiled to WebAsssembly target files: *.abi, *.wast, *.wasm. Just entry into the root directory of your contract project and execute:

robin build

DEPLOY CONTRACTS

Updating and configuring the config.js and migrate.js files, make sure you have make a successful connection with the ULTRAIN chain node. The nodultrain can be a integrated envirnment if you use longclaw in docker or maybe an customized node by yourself. Just entry into the root directory of your contract project and execute:

robin deploy

TEST CONTRACTS

Referring to *.spec.js files in the test directory, write your own test file and try to cover all the case about the contract. Robin provides you lots of tool classes such as mocha, chai, u3.js and u3-utils for writing test case, especially handling async test.

Just entry into the root directory of your contract project and execute:

robin test

INTEGRATED WITH UI

If you want to easily convert a contract project into a DAPP project, you only need to use the ui subcommand, and you have three main front-end templates to choose from vue-boilerplatereact-boilerplate and react-native-boilerplate.

Just entry into the root directory of your contract project and execute:

robin ui

robin's People

Contributors

liuff1988 avatar liaopeng avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.