Socket
Socket
Sign inDemoInstall

@useoptic/optic-node-sdk

Package Overview
Dependencies
21
Maintainers
5
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @useoptic/optic-node-sdk

Send data to Optic from JS


Version published
Weekly downloads
156
increased by25.81%
Maintainers
5
Install size
2.38 MB
Created
Weekly downloads
 

Readme

Source

@useoptic/optic-node-sdk

NPM GitHub Workflow Status

The code library standardizing data capture for Optic in Node applications. We have a list of middleware available for some frameworks, if we are missing the framework join our community and suggest the next framework or develop it with us.

Requirements

The library requires @useoptic/cli to be installed, instructions on installing it are available https://www.useoptic.com/docs/.

Intsall

npm install @useoptic/optic-node-sdk

Usage

The library takes a configuration object and captures traffic in the background as long as @useoptic/cli is installed.

Configuration

All options are optional for easier configuration in your application

  • enabled: boolean (defaults to false) Programmatically control if capturing data and sending it to Optic
  • uploadUrl: string (defaults to process.env.OPTIC_LOGGING_URL) The URL to Optics capture URL, if left blank it will expect OPTIC_LOGGING_URL environment variable set by the Optic CLI
  • console: boolean (defaults to false) Send to stdout/console for debugging
  • framework: string (defaults to '') Additional information to inform Optic of where it is capturing information

Example

Using the default http server within Node

const Optic = require('@useoptic/optic-node-sdk');
const http = require('http');

const optic = new Optic({
  enabled: true
});

const server = http.createServer((req, res) => {
  optic.captureHttpRequest(req, res);
  res.writeHead(200);
  res.end();
});

const port = 3000;
const host = 'localhost';
server.listen(port, host, () => {
  console.log(`Listen http://${host}:${port}`);
});

To start capturing data from the SDK, run your application with

api exec "node <your example file>"

License

This software is licensed under the MIT license.

FAQs

Last updated on 19 Jul 2021

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc