0.0.2 • Published 3 years ago
zipcloud-js v0.0.2
JavaScript client for Zipcloud API
Zipcloud API: http://zipcloud.ibsnet.co.jp/doc/api
How to use
1. Install
npm i zipcloud-js
or
yarn add zipcloud-js
2. Import the library
const { createClient } = require("zipcloud-js");
or
import { createClient } from "zipcloud-js";
3. Create a client
const client = createClient();
4. Get address
const data = await client.getAddress({
zipcode: "100-0001",
});