New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@icepanel/core

Package Overview
Dependencies
Maintainers
1
Versions
304
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

@icepanel/core

[![npm version](http://img.shields.io/npm/v/@icepanel/core.svg?style=flat)](https://npmjs.org/package/@icepanel/core) [![npm size](https://img.shields.io/bundlephobia/min/@icepanel/core.svg)](https://npmjs.org/package/@icepanel/core) [![npm downloads](htt

latest
npmnpm
Version
0.7.2
Version published
Maintainers
1
Created
Source

IcePanel Core

npm version npm size npm downloads github issues github prs

This package provides all the core elements and base classes required to create the backend for IcePanel plugins.

Installation

First install the package into your project.

npm install @icepanel/core
yarn add @icepanel/core

Usage

You can then create and export classes for the following plugin types:

  • AppPlugin
  • EnginePlugin
  • NetworkPlugin
  • ToolPlugin
  • VolumePlugin

See the example below of a simple IcePanel app plugin.

import { AppPlugin, IAppPlugin } from '@icepanel/core'

export interface IMyAppStore {}

export default class MyApp extends AppPlugin<IMyAppStore>
  implements IAppPlugin<IMyAppStore> {

  async init() {
    await super.init()
    console.log('My app is starting up')
  }

  async destroy() {
    console.log('My app is being destroyed')
    await super.destroy()
  }
}

FAQs

Package last updated on 01 Oct 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