New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@atoms-studio/commercelayer-sdk

Package Overview
Dependencies
Maintainers
5
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atoms-studio/commercelayer-sdk

[![Build Status](https://github.com//atoms-studio/commercelayer-sdk/workflows/Node.js%20CI/badge.svg)](https://github.com/atoms-studio/commercelayer-sdk/actions) [![codecov](https://codecov.io/gh/atoms-studio/commercelayer-sdk/branch/main/graph/badge.svg?

  • 0.1.0-alpha.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
30
decreased by-62.5%
Maintainers
5
Weekly downloads
 
Created
Source

Build Status codecov

CommerceLayer SDK

A lightweight, opinionated CommerceLayer SDK built for fast delivery of e-commerce functionalities.

Why

The official CommerceLayer SDK is a great multi-purpose library that covers a lot of scenarios, however we realized that in every project we worked on we had to reimplement a lot of functionalities tied to the e-commerce workflow: token refresh, token caching, multi-market switch, etc.
This library aims to speed-up development by creating a thinner and easier interface with the CommerceLayer API and provide utilities to deal with the aforementioned problems.

Features

Strongly typed

All supported resources are strongly typed and provide code autocompletion for attributes and relationships, decreasing time spent reading the CommerceLayer API documentation.

Automatic token refresh

Combining Authentication and API into a single library allows for automatic refresh of tokens when a request fails due to an expired token.

Token caching

Tokens are cached by their scope and expiration date, avoiding rate limiting errors when generating static pages or making a lot of concurrent requests.

Seamless multi-market switching

Switch between multiple markets and automatically create new auth tokens for that market.

Installation

npm i @atoms-studio/commercelayer-sdk
yarn add @atoms-studio/commercelayer-sdk

Quick start

import { init, Auth, Orders, Skus } from '@atoms-studio/commercelayer-sdk'

init({
  host: '<your cl domain>.commercelayer.io',
  clientId: '<your cl client id>,
})

await Auth.setMarket(1234)

const order = await Orders.create()

const sku = await Skus.findBy({
  code: '12345678,
  include: ['prices'],
})

await LineItems.create(
  {
    sku_code: sku.code,
    quantity: 1,
  },
  {},
  {
    order,
  },
)

FAQs

Package last updated on 23 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc