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

priority-web-sdk

Package Overview
Dependencies
Maintainers
1
Versions
134
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

priority-web-sdk

Library for creating great websites and apps with Priority

latest
npmnpm
Version
3.0.37
Version published
Maintainers
1
Created
Source

Priority Web SDK for node.js

This is an npm package that enables the Priority Web SDK on top of the node.js APIs.

Installation and Usage

Use npm to install the library directly.

npm install priority-web-sdk --save

Once the library is installed, require-ing it returns the API object which contains all of the necessary methods.

var priority = require('priority-web-sdk');

Sample Application

Here's a very minimal application. It shows all of the rows in the CUSTOMERS form.

var configuration = {
    username: '<username>',
    password: '<password>',
    url: '<app server url>',
    tabulaini: 'tabula.ini',
    language: 3,
    company: 'demo'
};

priority.login(configuration)
  .then(()=> priority.formStart('CUSTOMERS', null, null, 'demo', 1))
  .then(form=> form.getRows(1))
  .then(rows=> console.log(rows))
  .catch(err=> console.log(err));

Documentation

https://prioritysoftware.github.io/api/

FAQs

Package last updated on 03 Sep 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