Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@alpha-manager/web-interface

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alpha-manager/web-interface

Web Interface for @alpha-manager/core

  • 1.0.10
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Alpha Manager [web interface]

This is a web interface for @alpha-manager/core written in React that connects to the running Alpha instance and allows you to control and manage your currently running tasks from a nice GUI.

Installation

$ npm i --s @alpha-manager/web-interface

Getting Started

All you have to do is import the module

const webInterface = require ('@alpha-manager/web-interface');

and start the server

webInterface ({
    port: 3000, // optional, default is 3000,
    password: "myPassword" // optional, default is "" (no password)
});

you should now be able to go to http://localhost:3000, authenticate, and start managing your tasks.

Logs

In order to see the logs from the web interface, you have to "pipe" them to the console.log function. This is meant to prevent logs from being displayed if you don't want them.

webInteface ({
	port: 3000,
    password: ""
}).logs (console.log);

Now all the logs should be logged to the console.

Running on zeit.co/now or other hosting services

If the hosting service you are using automatically binds all incoming traffic to the port you set, you can clear the "port" input when authenticating so that it automagically connects.

FAQs

Package last updated on 23 Sep 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

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