kakao-api-wrapper
TypeScript icon, indicating that this package has built-in type declarations

0.0.12 • Public • Published

KAKAO-API-WRAPPER

NodeJS Kakao REST API Wrapper

Getting Started

Installation

NPM

Node.js 8.0 or newer is required.
Installation can be done by using npm command

$ npm install kakao-api-wrapper

or with yarn

$ yarn add kakao-api-wrapper

Features

  • Daum search API
    • Web Search
    • Video Search
    • Image Search and more!
  • Map ( Local ) API
    • Address Search
    • Coord to address
    • Transcoord and more!

Usage

Searching Web Content

const { Kakao } = require('kakao-api-wrapper');
const kakao = new Kakao(/* api key */);

const search = kakao.daum.web('iz one');
search.then(function(result) {
  console.log(result.documents[0].title);
});

Searching Address

const { Kakao } = require('kakao-api-wrapper');
const kakao = new Kakao(/* api key */);

const search = kakao.map.coordToAddress(127.423084873712, 37.0789561558879);
search.then(function(result) {
  console.log(result.documents.address.address_name);
});

Readme

Keywords

none

Package Sidebar

Install

npm i kakao-api-wrapper

Weekly Downloads

14

Version

0.0.12

License

MIT

Unpacked Size

26.1 kB

Total Files

16

Last publish

Collaborators

  • delta-kor