1.0.0 • Published 6 years ago

teverse v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

Teverse API

Example

const teverse = require('teverse');

const teverseClient = new teverse();

// Sign in

teverseClient.login('username', 'password').then(myProfile=>{
    console.log(myProfile);
})

// Register a user

teverseClient.registerUser('username', 'mail@mail.com', 'password').then(success=>{
    console.log(success);
})