Skip to content

kodando/kodando

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Kodando

Collection of kotlin binding libraries for existing javascript libraries.

How to use it

Select the project and its version and replace the {PROJECT-NAME} and {PROJECT-VERSION} with the respective ones.

Maven

Adding the repository:

<repository>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
    <id>bintray-danfma-kotlin-kodando</id>
    <name>bintray</name>
    <url>https://dl.bintray.com/danfma/kotlin-kodando</url>
</repository>

Adding the library:

<dependency>
    <group>br.danfma.kodando</group>
    <artifactId>{PROJECT-NAME}</artifactId>
    <version>{PROJECT-VERSION}</version>
</dependency>

Gradle

Adding the repository:

maven { url "https://dl.bintray.com/danfma/kotlin-kodando" }

Adding the library:

compile "br.danfma.kodando:{PROJECT-NAME}:{PROJECT-VERSION}"

Projects

  • kodando-runtime - Some utilities for easily working with native javascript libraries;
  • kodando-jest - Jest bindings for testing;
  • kodando-rxjs - Rxjs bindings;
  • kodando-react - React bindings;
  • kodando-react-dom - React DOM bindings;
  • kodando-react-native - Initial support for React Native bindings;
  • kodando-react-router-dom - React Router for Web bindings.

REMARK

I had to reset again (Sorry!) the version schema for better maintenance versioning, so I changed the current group id to minimize the problems for existing users.