Leveraging APIs for Microservices

This page summarizes the projects mentioned and recommended in the original post on dev.to

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • lrnwebcomponents

    HAXTheWeb monorepo of elements and apis

  • Our url holds the link to google's mapping api and right after the /maps?q= in the link, we place in the latitude and longitude we have already found. Then, all we have left is to place that url into the src of our and the map will display, embedded in our page.

    For more info on using the Google Maps Platform check out their developer page.

    Externally

    To create a link in our page that takes up to Google Maps with our desired location already in the view window is not too different from before. We can create a simple tag and place the link for an external path with our long and lat we've received before.

    
        See on Google
    
    
    Enter fullscreen mode Exit fullscreen mode

    Here we've created a link that leads to google map's site with our long and lat coordinates and a zoom of 14 (,14z).

    Wiring with an Existing Component

    Let's say you want to use the data we received to utilize a different web component.

    For this example, we'll look at a tag named that will perform a wikipedia search and embed the page found into our site.
    Wikipedia-query info: Github npmjs

    Set Up

    We'll start by wiring the component into our program so we can implement the project. First, adding the package location to our dependencies in package.json.
    dependencies example
    Then we'll run an npm install on our project to get all the needed assets to run wikipedia-query.

    Once the install is finished, we want to add a "bare import" to our program file to be able to access the tag we just installed. A "bare import" is a convention where we let LitElement find what exact file we are looking for rather than specifically declaring one. This is important for improving the maintainability of our code since file locations and structures can change over time.

    In this example, our "bare import" will look like this:

    import '@lrnwebcomponents/wikipedia-query';
    
    Enter fullscreen mode Exit fullscreen mode

    Notice we only specify the general area of what we are importing and not a specific file name.

    Utilization

    Now that we're all set up, we can do objectively the easiest part. Remember we want to use the tag to display a wiki page of the location we received from our API earlier.

    To implement our tag we pass our location into it's search property and let the tag do the rest of the work for us.

    //finding wiki based on city and state
    
    
    //finding wiki based on city
    
    
    //finding wiki based on state
    
    
    Enter fullscreen mode Exit fullscreen mode

    Wrap It Up

    The main point in this post is the effectiveness of the fetch function. We are able to set a call to any API, receive the JSON data, and use that data in any way we want.

    Everything I talked about in this post is held in a small project that does more than is explained but is mostly centered around these topics.

    Feel free to clone and play with the program on your own to see how it all plays together: Github

    FYI: Everything discussed in this post is location in the LocationFromIP.js file in the src folder.

  • ip-project

  • Our url holds the link to google's mapping api and right after the /maps?q= in the link, we place in the latitude and longitude we have already found. Then, all we have left is to place that url into the src of our and the map will display, embedded in our page.

    For more info on using the Google Maps Platform check out their developer page.

    Externally

    To create a link in our page that takes up to Google Maps with our desired location already in the view window is not too different from before. We can create a simple tag and place the link for an external path with our long and lat we've received before.

    
        See on Google
    
    
    Enter fullscreen mode Exit fullscreen mode

    Here we've created a link that leads to google map's site with our long and lat coordinates and a zoom of 14 (,14z).

    Wiring with an Existing Component

    Let's say you want to use the data we received to utilize a different web component.

    For this example, we'll look at a tag named that will perform a wikipedia search and embed the page found into our site.
    Wikipedia-query info: Github npmjs

    Set Up

    We'll start by wiring the component into our program so we can implement the project. First, adding the package location to our dependencies in package.json.
    dependencies example
    Then we'll run an npm install on our project to get all the needed assets to run wikipedia-query.

    Once the install is finished, we want to add a "bare import" to our program file to be able to access the tag we just installed. A "bare import" is a convention where we let LitElement find what exact file we are looking for rather than specifically declaring one. This is important for improving the maintainability of our code since file locations and structures can change over time.

    In this example, our "bare import" will look like this:

    import '@lrnwebcomponents/wikipedia-query';
    
    Enter fullscreen mode Exit fullscreen mode

    Notice we only specify the general area of what we are importing and not a specific file name.

    Utilization

    Now that we're all set up, we can do objectively the easiest part. Remember we want to use the tag to display a wiki page of the location we received from our API earlier.

    To implement our tag we pass our location into it's search property and let the tag do the rest of the work for us.

    //finding wiki based on city and state
    
    
    //finding wiki based on city
    
    
    //finding wiki based on state
    
    
    Enter fullscreen mode Exit fullscreen mode

    Wrap It Up

    The main point in this post is the effectiveness of the fetch function. We are able to set a call to any API, receive the JSON data, and use that data in any way we want.

    Everything I talked about in this post is held in a small project that does more than is explained but is mostly centered around these topics.

    Feel free to clone and play with the program on your own to see how it all plays together: Github

    FYI: Everything discussed in this post is location in the LocationFromIP.js file in the src folder.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • How we automated storybook documentation for our web components

    1 project | dev.to | 25 Aug 2022
  • export class MicroFrontendRegistry

    1 project | dev.to | 21 Jul 2022
  • Duck duck go example

    1 project | dev.to | 19 Jul 2022
  • Building micro frontends with Vercel + Lit

    1 project | dev.to | 19 Jul 2022
  • Carded, but with Flashes

    1 project | dev.to | 12 Dec 2021