![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
monaco-editor-wrapper
Advanced tools
This packages provides a wrapped monaco-editor
with full basic language support and enhanced support via workers for special languages (e.g. TS, HTML). The monaco-languageclient
can be activated to connect to a language server either via jsonrpc over a websocket to an exernal server process or via language server protocol for browser where the language server runs in a web worker.
If you have node.js LTS available, then from the root of the project run:
npm i
npm run build
Afterwards launch the Vite.js development mode:
npm run dev
You find examples (manual human testing) in the root of the repository index.html. They can be used once Vite is running.
Monaco Editor with JavaScript language support in web worker
// helper function for loading monaco-editor's own workers
import { buildWorkerDefinition } from 'monaco-editor-workers';
buildWorkerDefinition('./node_modules/monaco-editor-workers/dist/workers', import.meta.url, false);
import { MonacoEditorLanguageClientWrapper } from 'monaco-editor-wrapper';
const client = new MonacoEditorLanguageClientWrapper();
// helper functions for adding monaco styles with embedded codicon TTF
MonacoEditorLanguageClientWrapper.addMonacoStyles('monaco-editor-styles');
const client = new MonacoEditorLanguageClientWrapper();
const editorConfig = client.getEditorConfig();
editorConfig.setMainLanguageId('javascript');
editorConfig.setMainCode(`function logMe() {
console.log('Hello monaco-editor-wrapper!');
};`);
// assuming there is a div element named "monaco-editor-root"
client.startEditor(document.getElementById('monaco-editor-root') as HTMLElement)
.then((s: unknown) => console.log(s))
.catch((e: Error) => console.error(e));
Monaco Editor with language server running in a web worker:
// helper function for loading monaco-editor's own workers
import { buildWorkerDefinition } from 'monaco-editor-workers';
buildWorkerDefinition('./node_modules/monaco-editor-workers/dist/workers', import.meta.url, false);
import { MonacoEditorLanguageClientWrapper } from 'monaco-editor-wrapper';
const client = new MonacoEditorLanguageClientWrapper();
// helper functions for adding monaco styles with embedded codicon TTF
MonacoEditorLanguageClientWrapper.addMonacoStyles('monaco-editor-styles');
const editorConfig = client.getEditorConfig();
editorConfig.setMainLanguageId('plaintext');
editorConfig.setMainCode(`#ff0000 (red)
#00ff00 (green)
#0000ff (blue)`);
// use monaco-languageclient with web worker
editorConfig.setUseLanguageClient(true);
editorConfig.setUseWebSocket(false);
// load worker
const workerURL = new URL('./dist/worker.ts', window.location.href).href;
const lsWorker = new Worker(workerURL, {
type: 'classic',
name: 'LanguageServer'
});
client.setWorker(lsWorker);
// assuming there is a div element named "monaco-editor-root"
client.startEditor(document.getElementById('monaco-editor-root') as HTMLElement)
.then((s: unknown) => console.log(s))
.catch((e: Error) => console.error(e));
FAQs
Wrapper for monaco-vscode-editor-api and monaco-languageclient
The npm package monaco-editor-wrapper receives a total of 6,600 weekly downloads. As such, monaco-editor-wrapper popularity was classified as popular.
We found that monaco-editor-wrapper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.