Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@heseya/advanced-ui-modules-sdk

Package Overview
Dependencies
Maintainers
0
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@heseya/advanced-ui-modules-sdk

## Instalation

  • 1.4.5
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
24
decreased by-81.54%
Maintainers
0
Weekly downloads
 
Created
Source

UI Modules SDK

Instalation

$ yarn add @heseya/advanced-ui-modules-sdk
# or
$ npm i @heseya/advanced-ui-modules-sdk

Development

# Install dependencies
$ yarn

# Build in watch mode
$ yarn dev

# Build npm package
$ yarn build

# Run tests
$ yarn test

# Publish package to npm
$ yarn publish

Initialization

You can initialize the API Service by calling the createAdvancedUiModulesApiService function. It is important to pass the axios instance to the function.

Axios instance needs to be configured to use the URL of the UI Modules API. Without it the SDK will not be able to make requests to the API.

Remember to enhance axios instance with proper headers (X-Core-Url) and Identity Token based authentication.

import axios from 'axios'
import { createHeseyaApiService, HeseyaApiService } from '@heseya/store-core'

const axiosInstance = axios.create({ baseURL: 'https://api.example.com' })

const heseya: HeseyaApiService = createHeseyaApiService(axiosInstance)

FAQs

Package last updated on 12 Nov 2024

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