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

@dxc-technology/halstack-client

Package Overview
Dependencies
Maintainers
0
Versions
168
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dxc-technology/halstack-client

DXC Technology Halstack Client

1.6.0
latest
Source
npm
Version published
Weekly downloads
1.4K
-24.53%
Maintainers
0
Weekly downloads
 
Created
Source

Halstack Client for JavaScript

Halstack Client for JavaScript enables developers to easily work with hypermedia-based APIs in a declarative manner. It offers a set of functionalities to facilitate the navigation between hypermedia resources and get access to their properties dynamically, based on the HAL and JSON Hyper-Schema draft specifications, as well as DXC API guidelines and HAL extensions.

This SDK is released as a client-agnostic library that can be used both in browser applications (such as Vanilla JS, React or Angular applications) or backend applications (NodeJS applications). As such, it is distributed as UMD.

Installation

npm install @dxc-technology/halstack-client

Use in Node.js

// require from the dependency the modules you need
const {
  HalResource,
  HalResponse,
  HalApiCaller,
} = require("@dxc-technology/halstack-client");

Use in browsers

// require from the dependency the modules you need
import {
  HalResource,
  HalResponse,
  HalApiCaller,
} from "@dxc-technology/halstack-client";

HalResource Factory

The purpose of this module is facilitating the access to the information of a given resource. This factory function receives a JSON object with the HAL Resource Representation as a parameter.

It returns a HalResource Object, encapsulating the original HAL Resource Representation and including a set of functions that will allow you to access the data from the resource in a declarative manner, without having to fully understand the details of how HAL resource representation is structured.

The HalResource can also be used to help developers to create a compliant HalResource representation to be included in a Hal response, exposing functions to add different sections that typically can be found in a resource.

HalResource Object

NameTypeDescription
resourceRepresentationObjectThe whole resource representation.
getTitle()=>StringReturns the resource title. Taken from \_options.title.
getInteractions()=>HalInteraction[]Returns an array of HalInteraction objects. Taken from the \_options.links array.
getInteraction(String)=>HalInteractionReceives a string with the rel of the interaction. Returns the HalInteraction object.
getItems()=>Object[]Returns an array of the original item link objects. Taken from the \_links.item array.
getItem(Number)=>ObjectReceives the index of the item. Returns the item object.
getLinks()=>Object[]Returns an array of the original link objects (adding the rel), ignoring item link. Taken from the \_links object.
getLink(String)=>ObjectReceives a string with the rel of the link. Returns the link object (adding the rel).
getProperties()=>Object[]Returns an array of HalProperty objects. Taken from the resource root level properties.
getProperty(String)=>ObjectReceives a string with the key of the property. Returns the HalProperty object.
getRequiredProperties()=>String[]Returns an array with the required properties key. Taken from the \_options.required array.
isPropertyRequired(String)=>BoolReceives the key of a property. Returns true if it exists within the \_options.required array.
getSchemaProperties()=>Object[]Returns an array of the original schema objects for properties (adding key). Taken from the \_options.properties object.
getSchemaProperty(String)=>ObjectReceives the key of a property. Returns the property's schema object (adding key) if exists within \_options.properties object.
addLink(Object)=>voidReceives an object as parameter. This object can contain the usual link properties as { rel, name, href, title } where rel and href are required. The object will be added to the \links section using rel as key
addLinks(Object)=>voidReceives an object as parameter. This object can contain the usual link properties as { rel, name, href, title } where rel and href are required. The object will be added to the \links section using rel as key
addTitle(String)=>voidAssign the parameter received to the resource title in \_options.title
addItem(Object)=>voidAdd the object received as parameter as a resource \_link item
addItems(Object[])=>voidAdd every object in the list received as parameter as a resource \_link item.
addProperties(Object)=>voidAdd the key:values found in the object received as parameter as resource properties.
addOptionsProperties(Object)=>voidAdd every property received in parameter as property under the \_options.properties section
addOptionsProperty(Object)=>voidAdd the property ({key: schema}) received in parameter as property under the \_options.properties section
addInteraction(Object)=>voidAdd the object received as parameter ({rel: Interaction}) under the options.link section
addOptions(Object)=>voidIt receives an object as parameter and add interactions , properties, required and title if those sections are found as object keys.

HalInteraction Object

Includes the existing attributes of the original interaction object. It provides the following additional helper functions:

NameTypeDescription
getRequiredProperties()=>String[]Returns an array with the required properties key. Taken from the "schema.required" array of the interaction.
isPropertyRequired(String)=>BoolReceives the key of a property. Returns true if it exists within the "schema.required" array of the interaction.
getSchemaProperties()=>Object[]Returns an array of the original schema objects for properties (adding key). Taken from the \schema.properties object of the interaction.
getSchemaProperty(String)=>ObjectReceives the key of a property. Returns the property's schema object (adding key) if exists within \schema.properties object of the interaction.
hasProperty(String)=>BoolReceives the key of a property. Returns true if it exists within the \schema.properties object of the interaction.

HalProperty Object

NameTypeDescription
isRequired()=>BoolReturns true if the property exists within the \_options.required array.
existsInInteraction(String)=>BoolReceives a string with the rel of an interaction. Returns true if the property exists within the "schema.properties" object of the interaction.
getSchema()=>ObjectReturns the property's schema object (adding key) if exists within \_options.properties object.

HalResponse Factory

The purpose of this module is facilitating the access to the information returned inside an API response. This factory function accepts an object with the following attributes as a parameter:

NameTypeDescription
bodyObjectThe message-body is the data bytes transmitted associated with a http response.
headersObjectContains the http headers which provide information about the server and about further access to the resource identified by the Request-URI.
statusNumberStatus codes are issued by a server in response to a client's request made to the server. It includes codes from IETF Request for Comments (RFCs).

It returns HalResponse Object.

HalResponse Object

NameTypeDescription
bodyJSON ObjectResponse message-body
headersJSON ObjectHttp headers
statusNumberHttps response code
typeStringResponse format. Example: application/JSON
halResourceHalResourceHalResource Object composed using the information provided inside the body.
containsHalResourceBoolTrue if the content of the response is a HAL resource.

HalApiCaller Module

This module is a HTTP client which takes care of handing out parsed HalResponses. It exports the following functions:

NameTypeDescription
setGlobalHeadersfunctionReceives a headers object that will be used for all http requests done with this module.
getfunction:Promise(HalResponse)Receives a { url, headers } object as a parameter. Returns a promise and will pass a HalResponse object to the handler.
optionsfunction:Promise(HalResponse)Receives a { url, headers } object as a parameter. Returns a promise and will pass a HalResponse object to the handler.
patchfunction:Promise(HalResponse)Receives a { url, body, headers } object as a parameter. Returns a promise and will pass a HalResponse object to the handler.
postfunction:Promise(HalResponse)Receives a { url, body, headers } object as a parameter. Returns a promise and will pass a HalResponse object to the handler.
putfunction:Promise(HalResponse)Receives a { url, body, headers } object as a parameter. Returns a promise and will pass a HalResponse object to the handler.
delfunction:Promise(HalResponse)Receives a { url, headers } object as a parameter. Returns a promise and will pass a HalResponse object to the handler.

License

See Halstack Client License here

To Do

See our issues

FAQs

Package last updated on 10 Mar 2025

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