npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@borngroup/lightswitch-bloomreach-api

v0.1.9

Published

"api-client" package is the server layer that extends the vue-storefront / Born Lightswitch Server Middleware. It creates an API client (like Apollo for GraphQL or Axios for plain HTTP) that communicates with your eCommerce platform.

Downloads

26

Readme

#API-Client ##Overview "api-client" package is the server layer that extends the vue-storefront / Born Lightswitch Server Middleware. It creates an API client (like Apollo for GraphQL or Axios for plain HTTP) that communicates with your eCommerce platform.

It acts as a proxy between the users and the platform.

Here, you will create new endpoints that accept parameters sent from the frontend and use them to fetch or submit data to the platform.

##api-client vs Composables To provide customizable and easy to maintain applications, Vue Storefront offers composables. Composables are the main public API of Vue Storefront and in many cases the only API you'll work with. They are functions that implement most of the business logic of the application. You can treat each composable as an independent micro-application.

##Bloomreach Existing client-api Within the npmjs repository, there is an available package that provides an available GraphQL set of connectors and interfaces @bloomreach/graphql-commerce-connector-service

##BORN Lightswitch Customizations None required at this time, however some base level customizations and configurations are required.

##Accessing Platform APIs

###Extending GraphQL ####Quick Reference Notes

  • In Vue-Storefront / Lightswitch single integration has its own sort of software development kit (SDK) library. This library is named API-client and contains a set of functions.
  • Each function is dedicated to one action, endpoint or a feature eg. getProduct, loadCart addToCart
  • Each custom query lives in the middleware.config.js, so it's the place where we should define my-products-query.
  • Every custom query is registered in the middleware.config.js file:

###Documentation

##Documentation https://documentation.bloomreach.com/sdks/bloomreach-discovery-sdk.html

###brX GraphQl Service https://documentation.bloomreach.com/14/library/solutions/commerce-starterstore/graphql-service/how-to-extend-the-graphql-service-using-apollo-federation.html

###Apollo GraphQl playground

  1. Navigate to the root folder via the terminal
  2. Execute command
node --require dotenv/config index.js

##Bloomreach Connector Object This is located in the file located at packages/theme/middleware.config.js

[]: https://docs.vuestorefront.io/v2/advanced/extending-graphql-queries.html#keeping-the-configuration-tidy