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-script-workflow-designer

v2.3.71

Published

coder-script-workflow-core 对应的 设计器 # 安装

Downloads

2

Readme

概述

coder-script-workflow-core 对应的 设计器

安装

需要一个个采用的地方进行安装。不再采用 app.use() 里面 自动安装 coder-vform-designer 和 vform-render 等信息。

npm add coder-script-workflow-designer
npm add coder-script-workflow-core

//关于vform
import vformDesigner from 'coder-vform-designer'
import 'coder-vform-designer/dist/style.css'
import vformRender from 'coder-vform-render'
import 'coder-vform-render/dist/style.css'
import vformElePlus from 'coder-vform-element-plus'
import 'coder-vform-element-plus/dist/style.css'
import vformMember from 'coder-member-vform'
//workflow
import swfCore from 'coder-script-workflow-core'
import 'coder-script-workflow-core/dist/style.css'


import ElementPlus from "element-plus";
import "element-plus/dist/index.css";


import "ant-design-vue/dist/antd.css";

import router from "./router";
import DevelopCompents from "../lib";

import CoderMember from "coder-member-components-vue3";
import * as monaco from 'monaco-editor'

import vformElementPlus from 'coder-vform-element-plus'
import 'coder-vform-element-plus/dist/style.css'


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

// @ts-ignore: worker 导入方式可以参考vite官网 https://cn.vitejs.dev/guide/features.html#web-workers
self.MonacoEnvironment = { // 提供一个定义worker路径的全局变量
getWorker(a, label) {
  if (label === 'json') {
    return new jsonWorker();
  }
  if (label === 'typescript' || label === 'javascript') {
    return new tsWorker();
  }
  return new editorWorker(); // 基础功能文件, 提供了所有语言通用功能 无论使用什么语言,monaco都会去加载他。
}
};


//const url='http://192.168.2.5:8081/api'
const url = "http://183.237.148.22:58080/api/workflow"
const urlMember = 'http://183.237.148.22:58080/api'
//const urlMember = 'http://192.168.2.5:8081/api'
createApp(App)
.use(vformElementPlus)
.use(DevelopCompents)

.use(CoderMember, {
  path: `${urlMember}/member`,
  request: axios,
})
.use(vformMember)
.use(vformDesigner).use(vformRender)
.use(vformElePlus)
.use(swfCore, {
  path: url,
  request: axios,
  getToken() {
    return window.localStorage.getItem("token");
  }
})


.use(router)

.use(ElementPlus)

.mount("#app");

开始

  1. 更改 package.json 的 name
  2. vite-config.ts 中的项目名称。
build: {
    lib: {
      entry: path.resolve(__dirname, "lib/index"),
      name: "coder-notification-client",
      fileName: (format) => `index.${format}.js`,
    },