# node-stormondemand **Repository Path**: mirrors_liquidweb/node-stormondemand ## Basic Information - **Project Name**: node-stormondemand - **Description**: Node.js client bindings for the StormOnDemand API - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-04-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README node-stormondemand ============= Node.js client bindings for the StormOnDemand API. These are fairly barebones at the moment and simply provide an easy one-to-one mapping for API methods to Javascript functions. Documentation for the API can be found at: https://www.stormondemand.com/api/ To install: ``` npm install stormondemand ``` How to use this client: ``` var stormAPI = require('stormondemand'); var client = new stormAPI({ username: "", password: "" }); // Get my account history client.Notifications.all({}, function (res) { for (var i=0; i", "password": "" } ``` The tests will pick this file up and use it for the parameters to creating the API client. Alternatively, you can set environment variables: ``` export STORMONDEMAND_USERNAME='' export STORMONDEMAND_PASSWORD='' ``` To run the tests: ``` cd node-stormondemand nodeunit . ```