Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 482 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 482 Bytes

gRPC client for Dwarf

Use with dwarf microservice on a node web server. Use DWARF_GRPC_SERVER env var to set the gRPC server.

import { shorten } from "dwarf-client";

async function main() {
  try {
    const shortenedUrls = await shorten(["http://google.com", "http://whatever.com"]);
    console.log(shortenedUrls); // -> { urls: ["short-link-1", "short-link-2"] }
  } catch (err) {
    console.error(err);
  }
}