Socket
Socket
Sign inDemoInstall

@eventstore-ui/editor

Package Overview
Dependencies
Maintainers
3
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eventstore-ui/editor

Monaco Editor for Event Store Design System


Version published
Weekly downloads
217
decreased by-27.91%
Maintainers
3
Weekly downloads
 
Created
Source

@eventstore-ui/editor

Monaco editor wrapped in a web component, with pre-built workers.

See Monaco Editor for more information about usage.

Add to your project

yarn add @eventstore-ui/editor

Also, include the peer dependencies:

yarn add @eventstore-ui/components @eventstore-ui/utils

Set up within a Stencil project:

In your stencil config, add the workers to your copy task.

// import the path to the workers
import { workerPath } from '@eventstore-ui/editor/configure';

export const config: Config = {
    // ...
    outputTargets: [
        {
            // ...
            copy: [
                // ...
                {
                    src: workerPath,
                    dest: 'workers',
                },
            ],
        },
    ],
};

In your globalScript file:

// Add the core web components to the global pool
import '@eventstore-ui/components';
// add the editor web components to the global pool
import '@eventstore-ui/editor';

// import the monaco initialization code
import { initialize } from '@eventstore-ui/editor/initialize';

// initialize the monaco library (with options, if required)
initialize();

FAQs

Package last updated on 20 Apr 2023

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