npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

coder-vue3-monaco-editor-builder

v0.1.5

Published

需要添加 woker

Downloads

4

Readme

monaco editor 前期工作

需要添加 woker

参考 https://github.com/microsoft/monaco-editor/blob/main/docs/integrate-esm.md 中的 Using Vite 这一章节

import * as monaco from 'monaco-editor';
import editorWorker from 'monaco-editor/esm/vs/editor/editor.worker?worker';
import tsWorker from 'monaco-editor/esm/vs/language/typescript/ts.worker?worker';
import jsonWorker from 'monaco-editor/esm/vs/language/json/json.worker?worker';
monaco.languages.typescript.typescriptDefaults.setEagerModelSync(true);


window.MonacoEnvironment = {
  // 提供一个定义worker路径的全局变量
  getWorker(_: any, label: string) {
    if (label === 'json') {
      return new jsonWorker();
    }
    if (label === 'typescript' || label === 'javascript') {
      return new tsWorker();
    }
    return new editorWorker(); // 基础功能文件, 提供了所有语言通用功能 无论使用什么语言,monaco都会去加载他。
  },
};

start

默认已经导入 了 es5/es6 得代码提示。

``npm install coder-vue3-monaco-editor-builder`

<div ref="editr2Ref" class="editor"></div>
const monacoBuilder = useBuilder();
let editor: MonacoEditor | null = null;
const editr2Ref = ref();
/* 支持的提示西信息,内置了es5/es6的基础js库*/
useIntellisence().setNoLib().setEs5().setEs6();

onMounted(() => {
  editor = monacoBuilder.build(editr2Ref.value);
  /**
   *
   * @param uri 用于表示代码的唯一key,采用monaco.Uri。当切换代码的时候用此进行对比
   * @param code 代码
   * @param showCode 是否在代码编辑器中显示。
   * @param lang 语言id 根据woker的进行设置。
   * @returns
   */
  editor?.setCode("http://cc.com/2.ts", sourceCode1, true, "javascript");
  editor?.highlight(1) 
});