Autocode standard library Node.js bindings
Autocode CLI setup |
Node |
Python |
Ruby |
Web
Basic Node bindings for Autocode standard library service accession (Node 4+).
Used to interface with services built using Autocode and
the Autocode Command Line Tools.
The lib
package is available on npm: lib and
operates as zero-dependency interface to run Autocode standard library APIs and
web services. This means that you can utilize any service on Autocode without
installing any additional dependencies, and when you've deployed services to Autocode,
you have a pre-built Node.js SDK --- for example;
Callback Style
const lib = require('lib');
lib.yourUsername.hostStatus({name: 'Dolores Abernathy'}, (err, result) => {
});
Promise Style
const lib = require('lib');
lib.yourUsername.hostStatus({name: 'Dolores Abernathy'})
.then(result => )
.catch(err => );
To explore the Autocode standard library, visit https://autocode.com/lib/.
To build a web service or standard library API, sign up on https://autocode.com/.
Installation
To install locally in a project, use;
$ npm install lib --save
Usage
const lib = require('lib');
let message = await lib.utils.greet({name: 'Lionel Hutz'});
let message = await lib.utils.greet['@dev']({name: 'Lionel Hutz'});
let message = await lib.utils.greet['@release']({name: 'Lionel Hutz'});
let message = await lib.utils.greet['@0.0.1']({name: 'Lionel Hutz'});
let message = await lib.utils.greet['@dev'].otherEndpoint();
await lib['utils.greet']({name: 'Lionel Hutz'});
await lib['utils.greet[@dev]']({name: 'Lionel Hutz'});
await lib['utils.greet[@release]']({name: 'Lionel Hutz'});
await lib['utils.greet[@0.0.1]']({name: 'Lionel Hutz'});
await lib['utils.greet.otherEndpoint']({name: 'Lionel Hutz'});
await lib['utils.greet[@dev].otherEndpoint']({name: 'Lionel Hutz'});
await lib['utils.greet[@release].otherEndpoint']({name: 'Lionel Hutz'});
await lib['utils.greet[@0.0.1].otherEndpoint']({name: 'Lionel Hutz'});
Additional Information
To learn more about Autocode, visit autocode.com or read the
Autocode CLI documentation on GitHub.
You can follow the development team on Twitter, @AutocodeHQ
Autocode is © 2016 - 2021 Polybit Inc.