New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@armrest/client

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@armrest/client

Node.js Armrest client library

latest
Source
npmnpm
Version
0.2.2
Version published
Weekly downloads
973
94.99%
Maintainers
2
Weekly downloads
 
Created
Source

Armrest Node.js Client Library

A Node.js library for creating an Armrest client api.

Installation

Install using npm

npm install @armrest/client

Get Started

ESM

import Armrest from '@armrest/client'

Create new api

const API = new Armrest('http://armrest-api-url')
  .model('Example')

const api = API.Session('api-key')

Creating an Object

const example = await api.Example.create({
  test: 'attribute'
})

Updating an Object

await example.update({ test: 'changevalue' })

Selecting Objects

Objects can be selected using any attribute.

const results = await api.select(api.Example).filterBy({ test: 'value' })

Write complex queries using filter.

const results = api.Example.filter(
    pl.or(
       pl.Example.test.eq('value'),
       pl.Example.test.eq('othervalue')
    )
)

FAQs

Package last updated on 11 Dec 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