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

monaco-loader

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

monaco-loader

Monaco code editor, loaded and ready to use.

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
724
30.22%
Maintainers
1
Weekly downloads
 
Created
Source

Monaco Loader

Use the Monaco editor using a require() or a module loader.

npm i monaco-loader
const loader = require('monaco-loader')

loader().then((monaco) => {
  let editor = monaco.editor.create(document.getElementById('container'), {
    language: 'javascript',
    theme: 'vs-dark',
    automaticLayout: true
  })
})

Background

The Monaco editor is a wonderful piece of software - but the published module on npm does not conform to any standards. Just calling require('monaco-editor') will fail. This module cleanly requires the monaco code editor, properly configures it for usage together with a module loader, and just returns the monaco object to you.

By default, Monaco's internal loader's base url will be set to encodeURI(file://${monacoDir}/min). To override, call loader with loader({baseUrl: yourBaseUrl}).

License

MIT, please see LICENSE for details.

Keywords

Monaco

FAQs

Package last updated on 17 May 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