/monaco-protobuf

🍺 Protobuf language supporting for monaco editor

Primary LanguageJavaScriptMIT LicenseMIT

monaco-proto

Supporting Protobuf language for monaco-editor

Install

npm i -S monaco-proto

Usage

import registerProtobuf from 'monaco-proto';


// Register protobuf language
registerProtobuf(monaco);

// Create protobuf editor
monaco.editor.create(document.getElementById("container"), {
	language: "protobuf",
	theme: "protobuf"
});

Preview