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

wayscript

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wayscript

WayScript gives you flexible building blocks to seamlessly integrate, automate and host tools in the cloud.

Source
npmnpm
Version
0.0.7
Version published
Weekly downloads
63
-24.1%
Maintainers
1
Weekly downloads
 
Created
Source

WayScript JS

npm version CircleCI Status

A new way to build software.

  • WayScript gives you flexible building blocks to seamlessly integrate, automate and host tools in the cloud. Unlock new potential with drag and drop programming.

  • Instantly connect to hundreds of datasets including GitHub, Twitter, databases, ecommerce data, or build your own integration. WayScript can read data from Excel, Google Sheets, and an evergrowing list of third-party APIs.

  • Seamlessly migrate to the cloud: Generate interfaces, instantly share, and run via event-based triggering.

Quick Start

If you use npm:

npm install wayscript

Or load directly from CDN:

<script src="https://cdn.wayscript.com/static/js/api/wayscript.0.0.7.js"></script>

Basic Usage

  • Get the API Key from your WayScript user profile page

  • Run WayScript programs from your JavaScript code:

wayscript.apiKey = 'YOUR_API_KEY';

// Run a program by id
let programId = 1234;
wayscript.runProgram( programId );

// Pass variables to a program
let variables = [ 'one', 'two', 'three' ];
wayscript.runProgram( programId, variables );

// Handle the response
let onSuccess = function( responseText ) {
  console.log( responseText );
};
let onError = function( responseText ) {
  console.log( responseText );
};
wayscript.runProgram( programId ).onSuccess( onSuccess ).onError( onError );

Keywords

wayscript

FAQs

Package last updated on 17 May 2019

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