Socket
Socket
Sign inDemoInstall

@oracle/bots-node-sdk

Package Overview
Dependencies
Maintainers
2
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oracle/bots-node-sdk

Oracle Bots SDK for custom component development and webhook integrations


Version published
Weekly downloads
224
decreased by-37.08%
Maintainers
2
Weekly downloads
 
Created
Source

Oracle Digital Assistant Node.js SDK

This SDK is the main developer resource for Oracle Digital Asistant (ODA) integrations in a Node.js express environment. It provides two primary solutions for custom implementations against the ODA platform:

Installation

To install globally

npm install -g @oracle/bots-node-sdk

To install locally in your current directory:

npm install @oracle/bots-node-sdk

When installed locally use npx @oracle/bots-node-sdk instead of just bots-node-sdk to run the command-line interface (CLI) commands described below in getting started section.

Getting Started

This section explains the basic CLI commands to get your component service up and running. See the CLI documentation for a complete list of all the arguments and options you can configure with each command.

Creating a New Component Service

bots-node-sdk init MyComponentService

This creates a new component service named MyComponentService in a directory by the same name. The component service includes one sample custom component named helloWorld.

Adding a Custom Component to Existing Service

bots-node-sdk init component myCustomComponent custom

This creates a new custom component named myCustomComponent. Instead of typing custom for the component type argument, you can type c as a shortcut.

Adding an Entity Event Handler to Existing Service

bots-node-sdk init component myEventHandler entityEventHandler

This creates a new entity event handler named myEventHandler. Instead of typing entityEventHandler for the component type argument, you can type e as a shortcut.

Creating a Component Service Package

npm pack

This creates a component service package .tgz file that can be uploaded to the ODA embedded container.

Deploying as External Component Service

npm start

This creates a component service running on a local node server. The following command returns the metadata of all deployed components:

curl -X GET localhost:3000/components

To deploy to a docker container, you can use the following commands:

npm run-script docker-build
docker-compose up

Using Typescript

The SDK has full support for typescript. If you want to use typescript to write your custom components and event handlers, all you need to do is specify the language option when creating the component service:

bots-node-sdk init --language typescript MyComponentService

or the shorter format:

bots-node-sdk init -l t MyComponentService

This will set up your project for typescript, if you subsequently use the init component command to add a component to the service, it will create a typescript component instead of a javascript component.

When you run any of the other CLI commands described above after setting up your project with typescript, the typescript files will be automatically transpiled to javascript.

The benefit of using typescript over javascript is that it is strongly typed, so if you use an editor like Visual Code Studio, you will get code completion features and compile-time type checking, similar to Java.

See the README.md created in your scaffolded typescript project for more information.

More Information

Contributing

@oracle/bots-node-sdk is an open source project. See CONTRIBUTING for details.

License

Copyright © 2018-2021, Oracle and/or its affiliates. All rights reserved.

The Universal Permissive License (UPL), Version 1.0

npm version wercker status

Keywords

FAQs

Package last updated on 05 Feb 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc