0.17.0 • Published 4 years ago

muumuu v0.17.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

tukki.js

Simple Nodejs wrapper for MuumuuDomain API

Installation

$ npm install muumuu --save

Usage

Node.js

import Tukki from 'muumuu'

const tukki = new Tukki()

# authenticate
const res = await tukki.authenticate({id: 'muu-id', password: 'password'})
if (res.status == 201) {
  const token = res.data.jwt
}

# get prices
const res = await tukki.prices()
if (res.status == 200) {
  const prices = res.data
}

# get domain categories
const res = await tukki.domainCategories()
if (res.status == 200) {
  const categories = res.data
}

# get recomended domains
const res = await tukki.recomendedDomains()
if (res.status == 200) {
  const recomendedDomains = res.data
}

Contribution

  1. Fork (https://github.com/pepabo/tukki.js/fork)
  2. Create a feature branch
  3. Commit your changes
  4. Rebase your local changes against the master branch
  5. Run test suite with the npm ci command and confirm that it passes
  6. Create a new Pull Request

Author

kimromi

0.17.0

4 years ago

0.16.1

5 years ago

0.16.0

5 years ago

0.15.0

5 years ago

0.14.0

5 years ago

0.13.0

5 years ago

0.12.0

6 years ago

0.11.0

6 years ago

0.10.0

6 years ago

0.9.0

6 years ago

0.8.0

6 years ago

0.7.0

6 years ago

0.6.0

6 years ago

0.5.0

6 years ago

0.4.0

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.1

6 years ago