🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

lemon-probe-extension-project

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

lemon-probe-extension-project

This project is used together with probe-core & cloud-core.

unpublished
latest
Source
npmnpm
Version
1.0.4
Version published
Maintainers
2
Created
Source

lemon-probe-extension-project

This project is used together with probe-core & cloud-core.

Install

Probe.html

<!DOCTYPE html>
<html ng-app="probe">
<head>

<!-- Suggest to use 'utf-8' -->
	<meta charset="utf-8" />
	<title>[Any]</title>

<!-- All script can be from relative/absolute url or inline JavaScript -->

<!-- Some config items in window.config, must in the first. -->
	<script src="./config.js"></script>

<!-- Load the probe-core. -->
	<script src="[path/lemon-probe-core.js]"></script>

<!-- other extensions -->
	<script src="[lemon-probe-extension-project.js]"></script>

</head><body></body></html>

Use NPM:

npm install --save-dev lemon-probe-extension-project

<script src="./node_modules/lemon-probe-extension-project/dist/lemon-probe-extension-project.js"></script>

config.js

Here to provide a configuration template.

var config = {
    api: {
        // if use public service "//probe2.lemonce.net"
        domain: '[cloud-core server]',

        // If probe work in http protocol
        HttpPort: '81',

        // If probe work in https protocol
        HttpsPort: '443',

        // If your service has custom pathname.
        pathname: 'probe/'
    },
    language: 'en_US'
};

If you use the public service from offical, Lemonce

var config = {
    api: {
        domain: '//probe2.lemonce.net',
        HttpPort: '81',
        HttpsPort: '443',
        pathname: 'probe/'
    },
    language: 'en_US'
};

Effection

  • Override the core.ide.case.open.
  • Override the core.ide.case.save.
  • Add "Open - Case" dialog.
  • Probe would crash if can not be authed by cloud-core.
  • Use location hash to transmit porbe & tokon for auth.
  • Use location hash(caseId) for quick open a case from cloud-core.

Keywords

lemonce

FAQs

Package last updated on 04 Mar 2017

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