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 🙏

© 2025 – Pkg Stats / Ryan Hefner

morghulis

v4.2.16

Published

typescript + vue3 + data management

Readme

morghulis

typescript + vue3 + data management

Requirement

require a developed Valar project (a python django project, see https://pypi.org/project/valar/) to provide data service

connect with Valar in develop environment

  • add a proxy in the vite.config.ts
  • highly recommend using '/api' as the proxy name
export default defineConfig({
    server: {
        host: '0.0.0.0',
        open: false,
        proxy: {
            '/api': {
                target: `<Valar server url>`,
                changeOrigin: true,
                ws: true,
                rewrite: path => path.replace(/^\/api/, '')
            },
        },
    },
})

Installation

npm install morghulis element-plus
  • main.ts
import {createApp} from 'vue'
// install element-plus first
import 'element-plus/dist/index.css'
import ElementPlus from 'element-plus'
// install morghulis
import 'morghulis/style'
import createMorghulis, {MApp} from "morghulis";
import App from "@/App.vue";
import Content1 from "@/contents/Content1.vue";
import Content2 from "@/contents/Content2.vue";
import Content3 from "@/contents/Content3.vue";


const app = createApp(MApp)
app.use(ElementPlus)
app.use(createMorghulis({
    title: 'Valar Morghulis', //系统名称
    // accountLabel: '用户名', // 如果使用邮箱作为用户名,这项请置空
    signInOnly: false, // 是否禁止注册
    routes: [  // 路由
        {
            path: '/',
            name: '欢迎',
            component: App
        },
        {
            path: '/content1',
            name: 'Content1',
            component: Content1
        },
        {
            path: '/content2',
            name: 'Content2',
            component: Content2
        },
        {
            path: '/content3',
            name: 'Content3',
            component: Content3
        },
    ]
}))
app.mount('#app')

getting start

Data Table

  • when db equals orm, Valar will provide using SQL database (such as SQLLite, MySQL, Postgresql)
  • when db equals mon, Valar will provide using Mongodb
  • entity is the path to the relative data model of Valar server
  • code is the data view name, Valar will automatically create a data view for you. You can edit the data view in the table

<d-table
    db="orm"
    entity="valar.Valar"
    code="special"
></d-table>

Data Tree

  • try to edit the data in Tree, see what will happen in the Table

<el-row>
    <el-col :span="12">
        <d-tree
            db="orm"
            entity="valar.Vmm"
            broadcast
        ></d-tree>
    </el-col>
    <el-col :span="12">
        <d-table
            db="orm"
            entity="valar.Vmm"
            code="tree"
            broadcast
        ></d-table>
    </el-col>
</el-row>

Meta Editor

  • a panel to edit the meta data of Valar server

<meta-editor></meta-editor>

Admin Account:

  • you can register an admin account for morghulis, using 'admin' as the username, and the SECRET_KEY from your valar settings as the password.
  • using the admin account to manager your VM framework