这是indexloc提供的服务,不要输入任何密码
Skip to content

yusuf-musleh/lib-js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Standard Library JavaScript (Web) Bindings

Standard Library Setup | Node | Python | Ruby | Web

Basic JavaScript (Web) bindings for Standard Library service accession.

Used to interface with services built using Standard Library and the Standard Library Command Line Tools. You can utilize any service on Standard Library without installing any additional dependencies, and when you've deployed services to Standard Library, you have a pre-built web-based SDK --- for example;

lib.yourUsername.hostStatus({name: 'Dolores Abernathy'}, (err, result) => {

  // handle result

});

To discover Standard Library services, visit https://stdlib.com/search. To build a service, get started with the Standard Library CLI tools.

Installation

Simply save the lib.js file from this package anywhere in your web project, and link it in the <head> element of an HTML file before any <script>s that require it.

<script src="path/to/lib.js"></script>

Usage

Here are some fictional calling examples for a user named user with a "hello world" service, helloWorld, that takes one parameter (named name) and is released to both a dev and release environment (with version 0.1.1).

// Unnamed Parameters
lib.user.helloWorld('world', (err, result) => {});

// Named Parameters
lib.user.helloWorld({name: 'world'}, (err, result) => {});

// Environment Specified
lib.user.helloWorld['@dev']('world', (err, result) => {});

// Release Version (SemVer) Specified
lib.user.helloWorld['@0.1.1']('world', (err, result) => {});

// Promise
lib.user.helloWorld('world')
  .catch(err => {})
  .then(result => {});

// Async
let hello = await lib.user.helloWorld('world');

// For HTTP header information, use callback-style
lib.user.helloWorld('hello', (err, result, headers) => {});

Additional Information

To learn more about Standard Library, visit stdlib.com or read the Standard Library CLI documentation on GitHub.

You can follow the development team on Twitter, @StdLibHQ

Standard Library is © 2019 Polybit Inc.

About

Standard Library JavaScript (Web) Bindings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%